-
Notifications
You must be signed in to change notification settings - Fork 13
/
configApplications.lua
144 lines (144 loc) · 3.75 KB
/
configApplications.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
return {
['com.raycast.macos'] = {
bundleID = 'com.raycast.macos',
localBindings = {'c', 'space', 'o'}
},
['com.github.wez.wezterm'] = {
bundleID = 'com.github.wez.wezterm',
hyperKey = 'j',
tags = {'coding'}
},
['com.brave.Browser'] = {
bundleID = 'com.brave.Browser',
tags = {'browsers'},
},
['org.mozilla.firefox'] = {
bundleID = 'org.mozilla.firefox',
tags = {'browsers'}
},
['com.apple.Safari'] = {
bundleID = 'com.apple.Safari',
tags = {'browsers'}
},
['com.google.Chrome'] = {
bundleID = 'com.google.Chrome',
tags = {'browsers'}
},
['com.kapeli.dashdoc'] = {
bundleID = 'com.kapeli.dashdoc',
hyperKey = 'h',
tags = {'coding'}
},
['com.microsoft.teams2'] = {
bundleID = 'com.microsoft.teams2',
tags = {'communication', 'chat'}
},
['com.apple.mail'] = {
bundleID = 'com.apple.mail',
hyperKey = 'e',
tags = {'communication', 'distraction'}
},
['com.flexibits.fantastical2.mac'] = {
bundleID = 'com.flexibits.fantastical2.mac',
hyperKey = 'y',
localBindings = {'/'},
tags = {'planning', 'review', 'calendar'},
whitelisted = true,
},
['com.apple.finder'] = {
bundleID = 'com.apple.finder',
hyperKey = 'f'
},
['com.hnc.Discord'] = {
bundleID = 'com.hnc.Discord',
tags = {'distraction', 'chat'},
},
['com.tinyspeck.slackmacgap'] = {
bundleID = 'com.tinyspeck.slackmacgap',
tags = {'distraction', 'communication', 'chat'},
},
['com.tapbots.Tweetbot3Mac'] = {
bundleID = 'com.tapbots.Tweetbot3Mac',
tags = {'distraction', 'socialmedia'},
},
['com.culturedcode.ThingsMac'] = {
bundleID = 'com.culturedcode.ThingsMac',
hyperKey = 't',
tags = {'planning', 'review', 'tasks'},
whitelisted = true,
localBindings = {',', '.'},
},
['com.agiletortoise.Drafts-OSX'] = {
bundleID = 'com.agiletortoise.Drafts-OSX',
hyperKey ='d',
tags = {'review', 'writing', 'research', 'notes'},
whitelisted = true,
localBindings = {'x', ';'}
},
['com.joehribar.toggl'] = {
bundleID = 'com.joehribar.toggl',
hyperKey = 'n'
},
['com.ideasoncanvas.mindnode.macos'] = {
bundleID = 'com.ideasoncanvas.mindnode.macos',
tags = {'research'},
},
['com.apple.MobileSMS'] = {
bundleID = 'com.apple.MobileSMS',
tags = {'communication', 'distraction', 'personal'},
},
['com.valvesoftware.steam'] = {
bundleID = 'com.valvesoftware.steam',
tags = {'distraction'}
},
['net.battle.app'] = {
bundleID = 'net.battle.app',
tags = {'distraction'}
},
['com.spotify.client'] = {
bundleID = 'com.spotify.client'
},
['com.figma.Desktop'] = {
bundleID = 'com.figma.Desktop',
tags = {'design'},
},
['com.reederapp.5.macOS'] = {
bundleID = 'com.reederapp.5.macOS',
tags = {'distraction'},
},
['md.obsidian'] = {
bundleID = 'md.obsidian',
hyperKey = 'g',
tags = {'research', 'notes'},
},
['us.zoom.xos'] = {
bundleID = 'us.zoom.xos',
},
['org.whispersystems.signal-desktop'] = {
bundleID = 'org.whispersystems.signal-desktop',
tags = {'distraction', 'communication', 'personal'}
},
['ru.keepcoder.Telegram'] = {
bundleID = 'ru.keepcoder.Telegram',
tags = {'distraction', 'communication', 'personal'}
},
['com.surteesstudios.Bartender'] = {
bundleID = 'com.surteesstudios.Bartender',
localBindings = {'b'}
},
['com.loom.desktop'] = {
bundleID = 'com.loom.desktop',
},
['company.thebrowser.Browser'] = {
bundleID = 'company.thebrowser.Browser',
tags = {'browsers'}
},
['com.dexterleng.Homerow'] = {
bundleID = 'com.dexterleng.Homerow',
localBindings = {'l'}
},
['com.flexibits.cardhop.mac'] = {
bundleID = 'com.flexibits.cardhop.mac',
localBindings = {'u'}
}
}