Created
August 2, 2015 18:33
-
-
Save ShinNoNoir/c1135af36d31e5fe9a87 to your computer and use it in GitHub Desktop.
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
; AutoHotkey script for adding shortcuts for volume and next/prev controls | |
; using the Win (#), shift (+) and PgUp/PgDn keys: | |
#PgUp::Send {Volume_Up 3} | |
#PgDn::Send {Volume_Down 3} | |
#+PgDn::Send {Media_Next} | |
#+PgUp::Send {Media_Prev} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment