Skip to content

Instantly share code, notes, and snippets.

@kosinix
Created December 3, 2023 07:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kosinix/8a4f900b329c5d519039fdb0f86cb0bf to your computer and use it in GitHub Desktop.
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
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