Skip to content

Instantly share code, notes, and snippets.

@JacobDB
Last active February 13, 2022 12:57
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JacobDB/9d7d65744bc5152409138181affd628f to your computer and use it in GitHub Desktop.
Save JacobDB/9d7d65744bc5152409138181affd628f to your computer and use it in GitHub Desktop.
Focus assist toggle with WIN+SHIFT+F
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