Skip to content

Instantly share code, notes, and snippets.

@kevinfiol
Created January 22, 2021 15:28
Show Gist options
  • Save kevinfiol/9214d92033fc6a6784a607c97aa50838 to your computer and use it in GitHub Desktop.
Save kevinfiol/9214d92033fc6a6784a607c97aa50838 to your computer and use it in GitHub Desktop.
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