voidrice/.local/bin/tools/remaps

11 lines
380 B
Text
Raw Normal View History

2018-10-04 18:00:58 +00:00
#!/bin/sh
2019-01-13 21:08:37 +00:00
# This script is called by i3 on startup to remap keys.
2018-08-02 17:39:11 +00:00
# Increase key speed via a rate change
xset r rate 300 50
# Map the caps lock key to super...
2018-12-03 01:33:50 +00:00
setxkbmap -option caps:super
# But when it is pressed only once, treat it as escape.
2019-01-13 21:08:37 +00:00
killall xcape 2>/dev/null ; xcape -e 'Super_L=Escape'
# Map the menu button to right super as well.
xmodmap -e 'keycode 135 = Super_R'