README typo fixes & some little changes
This commit is contained in:
parent
488f5c0786
commit
8dc6efd81a
13 changed files with 120 additions and 9 deletions
19
src-tauri/commands/browser/ahk/Close browser.ahk
Normal file
19
src-tauri/commands/browser/ahk/Close browser.ahk
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
; Rerun as admin, if required
|
||||
If Not A_IsAdmin
|
||||
{
|
||||
Run *RunAs "%A_ScriptFullPath%"
|
||||
ExitApp
|
||||
}
|
||||
|
||||
; set partial title matching mode
|
||||
SetTitleMatchMode, 2
|
||||
|
||||
; list of all browsers to close
|
||||
GroupAdd, browsers, ahk_class MozillaWindowClass
|
||||
GroupAdd, browsers, ahk_class IEFrame
|
||||
GroupAdd, browsers, ahk_exe msedge.exe
|
||||
GroupAdd, browsers, ahk_exe chrome.exe
|
||||
GroupAdd, browsers, ahk_exe firefox.exe
|
||||
|
||||
; kill them all
|
||||
Winclose, ahk_group browsers
|
||||
BIN
src-tauri/commands/browser/ahk/Close browser.exe
Normal file
BIN
src-tauri/commands/browser/ahk/Close browser.exe
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue