Last active
February 13, 2022 12:57
-
-
Save JacobDB/9d7d65744bc5152409138181affd628f to your computer and use it in GitHub Desktop.
Focus assist toggle with WIN+SHIFT+F
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
active := false | |
+#F:: | |
SendInput, {LWin down}b{LWinUp}{Left} | |
SendInput, {APPSKEY}{Down}{Down}{Enter} | |
if (active = false) { | |
SendInput, {Down}{Down} | |
active := true | |
} else { | |
active := false | |
} | |
SendInput, {Enter} | |
Sleep, 350 | |
SendInput, {Escape} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment