Skip to content

Instantly share code, notes, and snippets.

@hidsh
Last active November 5, 2025 00:16
Show Gist options
  • Save hidsh/b71d279876bf72e09fd08bca1f62c772 to your computer and use it in GitHub Desktop.
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
; 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