2018-10-04 18:00:58 +00:00
|
|
|
#!/bin/sh
|
2018-03-11 23:16:41 +00:00
|
|
|
|
2018-03-12 04:17:47 +00:00
|
|
|
# This script is called by i3 on startup.
|
|
|
|
|
2018-08-02 17:39:11 +00:00
|
|
|
# Increase key speed via a rate change
|
|
|
|
xset r rate 300 50
|
2018-03-11 23:16:41 +00:00
|
|
|
# Map the caps lock key to super...
|
|
|
|
setxkbmap -layout us -variant altgr-intl -option caps:super
|
2018-03-12 04:17:47 +00:00
|
|
|
# If you don't want a us international keyboard, rather whatever keyboard
|
|
|
|
# you set in your installation, comment out the above line and uncomment
|
|
|
|
# the one below.
|
|
|
|
#setxkbmap -option caps:super
|
|
|
|
|
2018-03-11 23:16:41 +00:00
|
|
|
# But when it is pressed only once, treat it as escape.
|
2018-09-29 20:03:10 +00:00
|
|
|
killall xcape ; xcape -e 'Super_L=Escape'
|
2018-03-11 23:16:41 +00:00
|
|
|
|
|
|
|
# Map the menu button to right super as well.
|
|
|
|
xmodmap -e 'keycode 135 = Super_R'
|
|
|
|
#keycode 135 = Super_R NoSymbol Super_R
|