-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.plist
269 lines (252 loc) · 7.07 KB
/
info.plist
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>bundleid</key>
<string>com.hellovietduc.alfred.arc-control</string>
<key>connections</key>
<dict>
<key>B7D01C90-FCC3-4D23-A2E3-342837DE2C3A</key>
<array>
<dict>
<key>destinationuid</key>
<string>3685A677-8073-4A84-BE71-AEBD76F8325E</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>F651F0B7-25C4-4A3C-8CE4-B1D2B820C904</key>
<array>
<dict>
<key>destinationuid</key>
<string>B7D01C90-FCC3-4D23-A2E3-342837DE2C3A</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
</dict>
<key>createdby</key>
<string>Duc Nguyen</string>
<key>description</key>
<string>An Alfred Workflow for controlling Arc browser</string>
<key>disabled</key>
<false/>
<key>name</key>
<string>Arc Control</string>
<key>objects</key>
<array>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<true/>
<key>alfredfiltersresultsmatchmode</key>
<integer>2</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>68</integer>
<key>keyword</key>
<string>t</string>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string>Loading tabs...</string>
<key>script</key>
<string>on escape_string(_text)
set AppleScript's text item delimiters to the "\""
set the item_list to every text item of _text
set AppleScript's text item delimiters to the "\\\""
set _text to the item_list as string
set AppleScript's text item delimiters to ""
return _text
end
on build_item(_space_title, _tab_title, _tab_url, _arg)
set _item_title to "\"title\":\"" & _tab_title & "\","
set _item_subtitle to "\"subtitle\":\"" & _space_title & " • " & _tab_url & "\","
set _item_arg to "\"arg\":" & _arg & ","
set _item_match to "\"match\":\"" & _tab_title & " " & _tab_url & "\","
set _item_mods to "\"mods\":{\"cmd\":{\"valid\":true,\"arg\":\"" & _tab_url & "\",\"subtitle\":\"Press ?+C to copy URL\"}},"
set _item_text to "\"text\":{\"copy\":\"" & _tab_url & "\"}"
return "{" & _item_title & _item_subtitle & _item_arg & _item_match & _item_mods & _item_text & "}"
end
set _output to ""
set _result_count to 0
set _MAX_RESULTS to 100
tell application "Arc"
set _window_index to 1
repeat with _window in windows
set _space_index to 1
repeat with _space in spaces of _window
set _tab_index to 1
set _tab_count to count tabs of _space
set _space_title to my escape_string(get title of _space)
repeat with _tab in tabs of _space
set _tab_title to my escape_string(get title of _tab)
set _tab_url to get URL of _tab
set _arg to ("[" & _window_index & "," & _space_index & "," & _tab_index & "]")
set _item to my build_item(_space_title, _tab_title, _tab_url, _arg)
set _output to (_output & _item)
set _result_count to _result_count + 1
if _result_count >= _MAX_RESULTS then
exit repeat
end if
if _tab_index <= _tab_count then
set _output to (_output & ",")
end if
set _tab_index to _tab_index + 1
end repeat
if _result_count >= _MAX_RESULTS then
exit repeat
end if
set _space_index to _space_index + 1
end repeat
if _result_count >= _MAX_RESULTS then
exit repeat
end if
set _window_index to _window_index + 1
end repeat
end tell
return "{\"items\":[" & _output & "]}"
</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string>fetch_tabs.applescript</string>
<key>subtext</key>
<string>Filter Arc tabs</string>
<key>title</key>
<string>Arc tabs</string>
<key>type</key>
<integer>8</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>B7D01C90-FCC3-4D23-A2E3-342837DE2C3A</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>68</integer>
<key>script</key>
<string>on run argv
set _window_id to item 1 of argv as number
set _space_id to item 2 of argv as number
set _tab_id to item 3 of argv as number
activate application "Arc"
tell application "Arc"
tell window _window_id
tell space _space_id
tell tab _tab_id to select
end tell
end tell
end tell
end run</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string>open_tab.applescript</string>
<key>type</key>
<integer>8</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>3685A677-8073-4A84-BE71-AEBD76F8325E</string>
<key>version</key>
<integer>2</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>action</key>
<integer>0</integer>
<key>argument</key>
<integer>0</integer>
<key>focusedappvariable</key>
<false/>
<key>focusedappvariablename</key>
<string></string>
<key>hotkey</key>
<integer>17</integer>
<key>hotmod</key>
<integer>524288</integer>
<key>hotstring</key>
<string>T</string>
<key>leftcursor</key>
<false/>
<key>modsmode</key>
<integer>0</integer>
<key>relatedAppsMode</key>
<integer>0</integer>
</dict>
<key>type</key>
<string>alfred.workflow.trigger.hotkey</string>
<key>uid</key>
<string>F651F0B7-25C4-4A3C-8CE4-B1D2B820C904</string>
<key>version</key>
<integer>2</integer>
</dict>
</array>
<key>readme</key>
<string>An Alfred Workflow for controlling Arc browser.</string>
<key>uidata</key>
<dict>
<key>3685A677-8073-4A84-BE71-AEBD76F8325E</key>
<dict>
<key>xpos</key>
<real>665</real>
<key>ypos</key>
<real>140</real>
</dict>
<key>B7D01C90-FCC3-4D23-A2E3-342837DE2C3A</key>
<dict>
<key>xpos</key>
<real>300</real>
<key>ypos</key>
<real>140</real>
</dict>
<key>F651F0B7-25C4-4A3C-8CE4-B1D2B820C904</key>
<dict>
<key>xpos</key>
<real>35</real>
<key>ypos</key>
<real>140</real>
</dict>
</dict>
<key>userconfigurationconfig</key>
<array/>
<key>variablesdontexport</key>
<array/>
<key>version</key>
<string>0.0.1</string>
<key>webaddress</key>
<string>https://github.com/hellovietduc</string>
</dict>
</plist>