Files
.config-deprecated/_setkeylayout.sh
2026-03-16 01:59:49 -04:00

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