Created
January 11, 2022 13:29
-
-
Save andytwoods/b0a9e295bab7f457351e704783085374 to your computer and use it in GitHub Desktop.
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
F2:: | |
; Save current window | |
WinActivate,ahk_class Chrome_WidgetWin_1 | |
; --------------------------------------- | |
; Refresh Chrome | |
Process, Exist, chrome.exe | |
If(ErrorLevel) { | |
WinActivate, ahk_pid %ErrorLevel% | |
Send {F5} | |
} | |
; --------------------------------------- | |
; Return to original window | |
WinActivate ahk_id %original% | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment