Last active
November 2, 2020 19:35
-
-
Save Lokno/c99c601b69636ec70e556771ed3b3c12 to your computer and use it in GitHub Desktop.
Immediately closes any window containing "Twitter" in the title (autohotkey.com)
This file contains 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
SetTitleMatchMode,2 | |
Loop { | |
IfWinActive, Twitter | |
{ | |
SendInput ^w | |
} | |
Sleep, 1000 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment