Created
December 3, 2023 07:46
-
-
Save kosinix/8a4f900b329c5d519039fdb0f86cb0bf to your computer and use it in GitHub Desktop.
Auto focus on a window by its title every 5 seconds. Uses AutoHotkey v1
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
SetTitleMatchMode, 2 | |
Loop | |
{ | |
WinActivate, Chrome | |
Sleep, 5000 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment