Last active
August 6, 2016 10:42
-
-
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.
This file contains hidden or 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
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