Skip to content

Instantly share code, notes, and snippets.

@eduuh
Created June 19, 2020 19:41
Show Gist options
  • Save eduuh/12db78cc2b3ad14db5fe221bc6a84cb3 to your computer and use it in GitHub Desktop.
Save eduuh/12db78cc2b3ad14db5fe221bc6a84cb3 to your computer and use it in GitHub Desktop.
#!/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