diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/configure_desktop.sh | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/bin/configure_desktop.sh b/bin/configure_desktop.sh index 638b726..301ebc6 100644 --- a/bin/configure_desktop.sh +++ b/bin/configure_desktop.sh @@ -24,5 +24,16 @@ systemctl enable lightdm -touch /etc/X11/xorg.conf.d/00-keyboard.conf -localectl --no-convert set-x11-keymap de pc105 nodeadkeys + +cat > /etc/X11/xorg.conf.d/00-keyboard.conf << EOL +# Written by systemd-localed(8), read by systemd-localed and Xorg. It's +# probably wise not to edit this file manually. Use localectl(1) to +# instruct systemd-localed to update it. +Section "InputClass" + Identifier "system-keyboard" + MatchIsKeyboard "on" + Option "XkbLayout" "de" + Option "XkbModel" "pc105" + Option "XkbVariant" "nodeadkeys" +EndSection +EOF |