1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,15 @@ |
1 |
+# `XKBOPTIONS` from `$HOME/.keyboard`. |
|
2 |
+. "$HOME/.keyboard" |
|
3 |
+setxkbmap -model "$XKBMODEL" |
|
4 |
+setxkbmap -layout "$XKBLAYOUT" |
|
5 |
+setxkbmap -variant "$XKBVARIANT" |
|
6 |
+setxkbmap -option |
|
7 |
+printf '%s\n' "$XKBOPTIONS" \ |
|
8 |
+| tr ',' '\n' \ |
|
9 |
+| while read -r xkboption |
|
10 |
+do |
|
11 |
+ setxkbmap -option "$xkboption" |
|
12 |
+done |
|
13 |
+ |
|
14 |
+# Typematic delay and rate. |
|
15 |
+xset r rate 200 30 |