Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[S]gdm (Xorg) auf deutsches Tastaturlayout
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German)
View previous topic :: View next topic  
Author Message
Tinitus
Veteran
Veteran


Joined: 20 Sep 2004
Posts: 1754

PostPosted: Sun Jan 15, 2012 4:33 pm    Post subject: [S]gdm (Xorg) auf deutsches Tastaturlayout Reply with quote

Hallo,

nachdem ich sehr widersprüchliche Informationen im Netz gefunden habe...wie stellt man den gdm auf ein deutsches Tastaturlayout um? Ich verwende keine xorg.conf..

G. Roland


Last edited by Tinitus on Sun Jan 15, 2012 5:03 pm; edited 1 time in total
Back to top
View user's profile Send private message
Josef.95
Advocate
Advocate


Joined: 03 Sep 2007
Posts: 4693
Location: Germany

PostPosted: Sun Jan 15, 2012 4:52 pm    Post subject: Reply with quote

Hallo G. Roland ;)

Displaymanager wie GDM, KDM usw verwenden das Tastaturlayout wie es Xorg verwendet - und das ist per default "en"
Wenn du das ändern möchtest dann setze es wie gewünscht in der xorg.conf (oder in einer /etc/X11/xorg.conf.d/Datei)

Beispiel:
Code:
Section "InputClass"
   Identifier "keyboard-all"
   Driver "evdev"
   Option "XkbLayout" "de"
   MatchIsKeyboard "on"
EndSection
Back to top
View user's profile Send private message
Tinitus
Veteran
Veteran


Joined: 20 Sep 2004
Posts: 1754

PostPosted: Sun Jan 15, 2012 5:03 pm    Post subject: Reply with quote

Josef.95 wrote:
Hallo G. Roland ;)

Displaymanager wie GDM, KDM usw verwenden das Tastaturlayout wie es Xorg verwendet - und das ist per default "en"
Wenn du das ändern möchtest dann setze es wie gewünscht in der xorg.conf (oder in einer /etc/X11/xorg.conf.d/Datei)

Beispiel:
Code:
Section "InputClass"
   Identifier "keyboard-all"
   Driver "evdev"
   Option "XkbLayout" "de"
   MatchIsKeyboard "on"
EndSection


Hallo,

Danke für die Rückmeldung. Funktioniert.

Habe folgendes gemacht:

Code:


mkdir /etc/X11/xorg.conf.d/
cp  /usr/share/X11/xorg.conf.d/10-evdev.conf /etc/X11/xorg.conf.d/10-evdev.conf
nano /etc/X11/xorg.conf.d/10-evdev.conf


/etc/X11/xorg.conf.d/10-evdev.conf
Code:


#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection
Section "InputClass"
   Identifier "keyboard-all"
   Driver "evdev"
   Option "XkbLayout" "de"
   MatchIsKeyboard "on"
EndSection


Jetzt geht auch das einfügen von kopiertem Text (linke Maustaste) über die mittlere Maustaste wieder.
Back to top
View user's profile Send private message
LinuxTom
l33t
l33t


Joined: 26 Mar 2006
Posts: 798

PostPosted: Sun Jan 15, 2012 8:28 pm    Post subject: Reply with quote

Hat nur die "verkürzte" Section von Josef.95 nicht ausgereicht?
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum