12 lines
280 B
Bash
Executable File
12 lines
280 B
Bash
Executable File
#!/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
|