blob: cea356fca39f9363e4189d751c9a7fad1599da70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# Faster repeated keys and less delay before repeating
xset r rate 250 50 &
# Remap caps to super when held
setxkbmap -option caps:super
# Remap caps to escape when pressed
killall xcape 2>/dev/null ; xcape -e 'Super_L=Escape'
# Turn off caps lock, just in case it was on prior
xset -q | grep "Caps Lock:\s*on" && xdotool key Caps_Lock
|