Skip to content

Instantly share code, notes, and snippets.

@TornadoRadon
Created December 22, 2023 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TornadoRadon/051e1252cc068e8817688132cdea0678 to your computer and use it in GitHub Desktop.
Save TornadoRadon/051e1252cc068e8817688132cdea0678 to your computer and use it in GitHub Desktop.
Desktop Switch WinWheel
; 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