Skip to content

Instantly share code, notes, and snippets.

@Lokno
Last active November 2, 2020 19:35
Show Gist options
  • Save Lokno/c99c601b69636ec70e556771ed3b3c12 to your computer and use it in GitHub Desktop.
Save Lokno/c99c601b69636ec70e556771ed3b3c12 to your computer and use it in GitHub Desktop.
Immediately closes any window containing "Twitter" in the title (autohotkey.com)
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