Merge branch 'ssnailed-patch-1'
This commit is contained in:
commit
c5f4c6c9f4
2 changed files with 5 additions and 6 deletions
|
@ -1,9 +1,8 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
# Rerun the remaps script whenever a new input device is added.
|
||||
|
||||
while :; do
|
||||
remaps
|
||||
dmesg -W -f kern | grep "input:" -q
|
||||
sleep 1
|
||||
grep -qP -m1 '[^un]bind.+\/[^:]+\(usb\)' <(udevadm monitor -u -t seat -s input -s usb)
|
||||
done
|
||||
|
|
|
@ -8,4 +8,4 @@ setxkbmap -option caps:super,altwin:menu_win
|
|||
# When caps lock is pressed only once, treat it as escape.
|
||||
killall xcape 2>/dev/null ; xcape -e 'Super_L=Escape'
|
||||
# Turn off caps lock if on since there is no longer a key for it.
|
||||
xset -q | grep "Caps Lock:\s*on" && xdotool key Caps_Lock
|
||||
xset -q | grep -q "Caps Lock:\s*on" && xdotool key Caps_Lock
|
||||
|
|
Loading…
Reference in a new issue