Hello,
Recently I started to use fluxbox.
The only problem that I have is i can't find a way to change language.
I created kbd.conf in /etc/X11/xorg.conf.d
Code:
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd" #"evdev"
# Option "evdev"
# Option "Device" "/dev/input/by-path/pci-0000:00:1a.1-usb-0:2:1.0-event-kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "evdev"
Option "XkbLayout" "us,el"
Option "XkbVariant" ",qwerty"
Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll"
EndSection
Then i changed /etc/default/keyboard from
XKBLAYOUT="us"
to
XKBLAYOUT="us,el"
Still I can't change language.
Any help on this please.
Thanks
snvv
edit
if I write
Code:
setxkbmap "us,el" -variant ",extended" -option "grp:alt_shift_toggle"
then it works. However, I can find no way to make that run at startup.
EDIT 2
Solution
Put
Code:
exec setxkbmap -option grp:alt_shift_toggle -layout "us,el" &
before
Code:
exec fluxbox
in ~/.fluxbox/startup
All other approaches failed. |