47a00bfd0e
git-svn-id: https://svn.neo-layout.org@1523 b9310e46-f624-0410-8ea1-cfbb3a30dc96
12 lines
234 B
Bash
Executable file
12 lines
234 B
Bash
Executable file
#!/bin/sh
|
|
# CapsLock sollte aus sein
|
|
xmodmap -e "clear Lock"
|
|
|
|
numlockx off
|
|
# schalte autorepeat für modifier und deadkeys aus
|
|
for key in 51 94 21 35 49; do
|
|
xset -r $key
|
|
done
|
|
setxkbmap lv
|
|
xmodmap neo/neo_de.xmodmap || setxkbmap de
|
|
|