Skip to content

Instantly share code, notes, and snippets.

@jshbrntt
Last active August 6, 2016 10:42
Show Gist options
  • Save jshbrntt/08c752845eaec7e0d1dd4561d89f4925 to your computer and use it in GitHub Desktop.
Save jshbrntt/08c752845eaec7e0d1dd4561d89f4925 to your computer and use it in GitHub Desktop.
For those who like the CODE Keyboard media keybindings and would like to emulate them on any keyboard using AutoHotKey.
AppsKey & Insert::
Send {Media_Play_Pause}
KeyWait Insert
Return
AppsKey & Delete::
Send {Media_Prev}
KeyWait Delete
Return
AppsKey & End::
Send {Media_Next}
KeyWait End
Return
AppsKey & Home::
Send {Media_Stop}
KeyWait Home
Return
AppsKey & PgUp::
Send {Volume_Up}
Return
AppsKey & PgDn::
Send {Volume_Down}
Return
AppsKey & Pause::
Send {Volume_Mute}
KeyWait Pause
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment