Skip to content

Instantly share code, notes, and snippets.

@orng
Created August 26, 2015 15:31
Show Gist options
  • Save orng/023dc6cb9e7a9e7087e4 to your computer and use it in GitHub Desktop.
Save orng/023dc6cb9e7a9e7087e4 to your computer and use it in GitHub Desktop.
Extremely simple autohotkey script: replaces capslock with esc and maps ctrl+shit+left|right|up to media key prev|next|play/pause
Capslock::Esc
;; media keys: < = left shift, !=alt, ^ = ctrl
<^+Left::Send {Media_Prev}
<^+Right::Send {Media_Next}
<^+Up::Send {Media_Play_Pause}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment