12 lines
280 B
Bash
12 lines
280 B
Bash
|
|
#!/bin/sh
|
||
|
|
sudo mkdir -p /etc/X11/xorg.conf.d
|
||
|
|
|
||
|
|
sudo tee /etc/X11/xorg.conf.d/00-keyboard.conf >/dev/null <<'EOF'
|
||
|
|
Section "InputClass"
|
||
|
|
Identifier "system-keyboard"
|
||
|
|
MatchIsKeyboard "on"
|
||
|
|
Option "XkbLayout" "us,ru"
|
||
|
|
Option "XkbOptions" "grp:ctrls_toggle"
|
||
|
|
EndSection
|
||
|
|
EOF
|