Created
June 19, 2020 19:41
-
-
Save eduuh/12db78cc2b3ad14db5fe221bc6a84cb3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script is called on startup to remap keys. | |
# Increase key speed via a rate change | |
xset r rate 300 50 | |
setxkbmap us -variant colemak # set up the default keyboard layout to colemak | |
# Map the caps lock key to super... | |
setxkbmap -option caps:super | |
# But when it is pressed only once, treat it as escape. | |
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' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment