Last active
June 19, 2020 19:37
-
-
Save eduuh/fd8e5693e17fd62d016aaa4a276095ab 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 | |
# make CapsLock behave like Ctrl: | |
setxkbmap -option ctrl:nocaps | |
# make short-pressed Ctrl behave like Escape: | |
xcape -e 'Control_L=Escape' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment