Last active
November 20, 2021 09:12
-
-
Save emmaly/4ec8f3924dd026f693ce30bb9894f2db to your computer and use it in GitHub Desktop.
Google Meet launcher via AutoHotkey
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
| ; 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