-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp_launcher.lua
63 lines (50 loc) · 1.32 KB
/
app_launcher.lua
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
60
61
62
63
--define hyper
hyper = {"cmd", "alt", "ctrl"}
--open Finder hyper + f
hs.hotkey.bind(hyper, "F", function()
hs.application.open('Finder.app')
end)
--open Chrome hyper + c
hs.hotkey.bind(hyper, "C", function()
hs.application.open('Google Chrome.app')
end)
--open Google Meet hyper + m
hs.hotkey.bind(hyper, "M", function()
hs.application.open('Google Meet.app')
end)
--open iTerm hyper + t
hs.hotkey.bind(hyper, "T", function()
hs.application.open('iTerm.app')
end)
--open Keychain hyper + k
hs.hotkey.bind(hyper, "K", function()
hs.application.open('Keychain Access.app')
end)
--open Arc hyper + a
hs.hotkey.bind(hyper, "A", function()
hs.application.open('Arc.app')
end)
--open Visual Studio hyper + v
hs.hotkey.bind(hyper, "V", function()
hs.application.open('Visual Studio Code.app')
end)
--open Slack hyper + s
hs.hotkey.bind(hyper, "S", function()
hs.application.open('Slack.app')
end)
--open Zoom hyper + Z
hs.hotkey.bind(hyper, "Z", function()
hs.application.open('zoom.us.app')
end)
--open OBS hyper + O
hs.hotkey.bind(hyper, "O", function()
hs.application.open('OBS.app')
end)
--open Notion hyper + N
hs.hotkey.bind(hyper, "N", function()
hs.application.open('Notion.app')
end)
--open Replit hyper + R
hs.hotkey.bind(hyper, "R", function()
hs.application.open('Replit.app')
end)