2020-02-08 23:43:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-02-01 21:07:09 +00:00
|
|
|
# This script is called on startup to remap keys.
|
2022-04-27 00:31:03 +00:00
|
|
|
# Decrease key repeat delay to 300ms and increase key repeat rate to 50 per second.
|
2019-11-23 21:28:52 +00:00
|
|
|
xset r rate 300 50
|
2022-04-27 00:31:03 +00:00
|
|
|
# Map the caps lock key to super, and map the menu key to right super.
|
|
|
|
setxkbmap -option caps:super,altwin:menu_win
|
|
|
|
# When caps lock is pressed only once, treat it as escape.
|
2019-11-23 21:28:52 +00:00
|
|
|
killall xcape 2>/dev/null ; xcape -e 'Super_L=Escape'
|
2022-04-27 00:31:03 +00:00
|
|
|
# Turn off caps lock if on since there is no longer a key for it.
|
2023-02-09 16:52:47 +00:00
|
|
|
xset -q | grep -q "Caps Lock:\s*on" && xdotool key Caps_Lock
|