Created
December 22, 2023 05:34
-
-
Save TornadoRadon/051e1252cc068e8817688132cdea0678 to your computer and use it in GitHub Desktop.
Desktop Switch WinWheel
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
; Desktop Switch WinWheel by TornadoRadon | |
; October 14, 2023 | |
#SingleInstance ; Allow only one instance of this script to be running. | |
Persistent | |
CoordMode "Mouse" , "Screen" ; Coordinates are relative to the desktop (entire screen). | |
#WheelUp:: | |
{ | |
Send "^#{Right}" | |
} | |
#WheelDown:: | |
{ | |
Send "^#{Left}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment