Last active
November 5, 2025 00:16
-
-
Save hidsh/b71d279876bf72e09fd08bca1f62c772 to your computer and use it in GitHub Desktop.
ahk script: Disable overlay popup when pressing ESC key from Google Play Games App for Windows
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
| ; disable_esc_gpg.ahk | |
| ; | |
| ; Disable following overlay from Google Play Games App for Windows | |
| ; "shift+tabキーを押すと、ゲームを終了する、コントロールを開くなどの操作が行えます。" | |
| #Requires AutoHotkey v2.0 | |
| #HotIf WinActive("ahk_exe crosvm.exe") | |
| Esc::Send "^{b}" | |
| ^H::return ; ignore C-h to avoid accidentally quitting game app | |
| #HotIf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment