Created
January 22, 2021 15:28
-
-
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
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
#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