-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshortcuts.ahk
More file actions
59 lines (55 loc) · 966 Bytes
/
shortcuts.ahk
File metadata and controls
59 lines (55 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
; Alt + Q - Browser (Google Chrome)
!q::
IfWinExist, ahk_exe chrome.exe ; Chrome browser window class
{
WinActivate ;
}
else
{
Run, C:\Program FIles\Google\Chrome\Application\chrome.exe ;
}
return
; Alt + W - WezTerm
!w::
IfWinExist, ahk_exe wezterm-gui.exe ; wezterm
{
WinActivate
}
else
{
Run, "C:\Program Files\WezTerm\wezterm-gui.exe" ;
}
return
; Alt + E - Slack
!e::
IfWinExist, ahk_exe slack.exe ; Slack application executable
{
WinActivate
}
else
{
Run, C:\Users\el.koulaxis\AppData\Local\slack\slack.exe ;
}
return
; Alt + R - Discord
!r::
IfWinExist, ahk_exe Discord.exe ; Discord application executable
{
WinActivate
}
else
{
Run, C:\Users\el.koulaxis\AppData\Local\Discord\Update.exe --processStart Discord.exe ;
}
return
; Alt + F - Spotify
!f::
IfWinExist, ahk_exe Spotify.exe ; Spotify application executable
{
WinActivate
}
else
{
Run, C:\Users\el.koulaxis\AppData\Roaming\Spotify\Spotify.exe ;
}
return