diff --git a/GracefullyCloseChromes.ahk b/GracefullyCloseChromes.ahk new file mode 100644 index 0000000..0aee60d --- /dev/null +++ b/GracefullyCloseChromes.ahk @@ -0,0 +1,7 @@ +; Close all Chrome windows by sending F4 to the window. +while WinExist("ahk_exe chrome.exe") +{ + WinActivate, ahk_exe chrome.exe + Send !{f4} +} + diff --git a/GracefullyCloseChromes.exe b/GracefullyCloseChromes.exe new file mode 100644 index 0000000..d31de59 Binary files /dev/null and b/GracefullyCloseChromes.exe differ