Last active
April 7, 2017 17:55
-
-
Save DavidMetcalfe/22a6df3b62a4795e8dc34af7063ece72 to your computer and use it in GitHub Desktop.
Repurpose F11 and F12 keys to control sound in Windows
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
F11:: | |
; Decremenet sound by 10. | |
{ | |
SoundSet -10 | |
return | |
} | |
F12:: | |
; Increment sound by 10. | |
{ | |
SoundSet, +10 | |
return | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment