Last active
December 25, 2015 05:39
-
-
Save blockloop/6925556 to your computer and use it in GitHub Desktop.
Send media controls via shortcuts (play/pause, skip, back, volume up/down)
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
#SingleInstance force | |
RControl & UP:: | |
Send {Volume_Up} | |
return | |
RControl & DOWN:: | |
Send {Volume_Down} | |
return | |
RControl & Left:: | |
Send {Media_Prev} | |
return | |
RControl & Right:: | |
Send {Media_Next} | |
return | |
RControl & Enter:: | |
Send {Media_Play_Pause} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment