ImCylon
(usa Slackware)
Enviado em 12/11/2012 - 17:15h
No slackware 13.37 e 14.0 a mudança do layout do teclado é assim(logado como root):
copie o arquivo "90-keyboard-layout.conf" para /etc/X11/xorg.conf.d/
cp /usr/share/X11/xorg.conf.d/90-keyboard-layout.conf /etc/X11/xorg.conf.d/
abra o arquivo "/etc/X11/xorg.conf.d/90-keyboard-layout.conf" com editor de texto de sua preferencia e modifique a linha
Option "XkbLayout" "us"
para
Option "XkbLayout" "br"
-> Texto original
Section "InputClass"
Identifier "keyboard-all"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbLayout" "us"
#Option "XkbVariant" ""
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection
-> Texto modificado
Section "InputClass"
Identifier "keyboard-all"
MatchIsKeyboard "on"
MatchDevicePath "/dev/input/event*"
Driver "evdev"
Option "XkbLayout" "br"
#Option "XkbVariant" ""
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection