Skip to content

Instantly share code, notes, and snippets.

@DavidMetcalfe
Last active April 7, 2017 17:55
Show Gist options
  • Save DavidMetcalfe/22a6df3b62a4795e8dc34af7063ece72 to your computer and use it in GitHub Desktop.
Save DavidMetcalfe/22a6df3b62a4795e8dc34af7063ece72 to your computer and use it in GitHub Desktop.
Repurpose F11 and F12 keys to control sound in Windows
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