Last active
May 17, 2019 12:02
-
-
Save chand1012/77554ad29dd7e5f3616a11811c15600c to your computer and use it in GitHub Desktop.
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:=1 | |
<^<!b:: | |
Run, cmd | |
return | |
<^<!t:: | |
run, git-bash.exe | |
return | |
; on the mx master, mouse 5 (xbutton2) is the top button. Mouse 4 is the bottom (xbutton1) | |
^XButton2:: | |
if (desktop<5){ | |
desktop:=desktop + 1 | |
send ^!{F%desktop%} | |
} | |
return | |
^XButton1:: | |
if (desktop>0){ | |
desktop:=desktop - 1 | |
send ^!{F%desktop%} | |
} | |
return | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment