diff options
Diffstat (limited to '')
-rw-r--r-- | .xkb/keycodes/kinesisfix | 6 | ||||
-rwxr-xr-x | bin/icd | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/.xkb/keycodes/kinesisfix b/.xkb/keycodes/kinesisfix new file mode 100644 index 0000000..e700ab5 --- /dev/null +++ b/.xkb/keycodes/kinesisfix @@ -0,0 +1,6 @@ +xkb_keycodes { + <LCTL> = 133; + <LALT> = 64; + <RALT> = 105; + <RCTL> = 134; +}; @@ -19,6 +19,7 @@ LAPTOP_OPTIONS="\ KIN_OPTIONS="\ ${GLOBAL_OPTIONS} \ + -geometry kinesis -option lv3:switch \ -option caps:swapescape" @@ -54,7 +55,9 @@ if [ "x${KIN_USB_ID}" != "x" ]; then -I${XKB_DIR} \ -device ${XID} \ ${KIN_OPTIONS} \ - -print | sed -e 's@+ctrl(nocaps)@@g;s@bksp)@bksp)+lalt_meta(lalt_meta)@g' > ${HOME}/.xkb/keymap/icd.kin + -print | \ + sed -e 's@+ctrl(nocaps)@@g;s@bksp)@bksp)+lalt_meta(lalt_meta)@g' | \ + sed -e '/xkb_keycodes/s/"[[:space:]]/+kinesisfix&/' > ${HOME}/.xkb/keymap/icd.kin xkbcomp -I${HOME}/.xkb -i ${XID} -synch \ ${HOME}/.xkb/keymap/icd.kin ${DISPLAY} # 2> /dev/null done |