forked from plul/Public-AutoHotKey-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
programs.ahk
18 lines (14 loc) · 867 Bytes
/
programs.ahk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; Created by Alexander Naumann
;-------------------------------------------------------------------------------
; SHORTCUTS
; !=alt, #=windows, ... see https://www.autohotkey.com/docs/Hotkeys.htm
; combine two keys with & or concatenate
; use 'getclass' to see ahk_class
;-------------------------------------------------------------------------------
;-------------------------------------------------------------------------------
; Specify Application shortcuts here
;-------------------------------------------------------------------------------
CapsLock & f::WinOpenOrActivateExe("C:\Program Files\Mozilla Firefox\firefox.exe")
CapsLock & g::WinOpenOrActivate("ahk_class CabinetWClass", "explorer")
CapsLock & t::WinOpenOrActivateExe("C:\Program Files\Mozilla Thunderbird\thunderbird.exe")
CapsLock & w::WinOpenOrActivate("ahk_class OpusApp", "WINWORD")