Skip to content

Instantly share code, notes, and snippets.

@emmaly
Last active November 20, 2021 09:12
Show Gist options
  • Select an option

  • Save emmaly/4ec8f3924dd026f693ce30bb9894f2db to your computer and use it in GitHub Desktop.

Select an option

Save emmaly/4ec8f3924dd026f693ce30bb9894f2db to your computer and use it in GitHub Desktop.
Google Meet launcher via AutoHotkey
; Meet.ahk v1.2 2021-11-20 emmaly
SetTitleMatchMode, RegEx
if WinExist("^(Google Meet|(Google Meet - )?Meet - [a-z]{3}-[a-z]{4}-[a-z]{3})$ ahk_exe chrome.exe")
{
WinActivate
} else {
Run, "C:\Program Files\Google\Chrome\Application\chrome_proxy.exe" --profile-directory="Profile 1" --app-id=kjgfgldnnfoeklkmfkjfagphfepbbdan, "C:\Program Files\Google\Chrome\Application"
}
; Compile via `"%ProgramFiles%\AutoHotkey\Compiler\Ahk2Exe.exe" /in Meet.ahk`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment