Skip to content

Instantly share code, notes, and snippets.

@kevinfiol
Created January 22, 2021 15:28
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Windows: Use Mouse Button (bound to imaginary key, F13) + Scroll Wheel to control global System Volume
#NoTrayIcon
#MaxHotkeysPerInterval 200
WheelUp::
if( GetKeyState("F13") ) {
Send, {Volume_Up}
}
else {
Send, {WheelUp}
}
Return
WheelDown::
if( GetKeyState("F13") ) {
Send, {Volume_Down}
}
else {
Send, {WheelDown}
}
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment