-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.plist
92 lines (92 loc) · 2.27 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
<?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.wingsuitist.ejectall</string>
<key>category</key>
<string>Tools</string>
<key>connections</key>
<dict>
<key>887A5B23-A6E8-47FC-BCF4-09569787C41A</key>
<array>
<dict>
<key>destinationuid</key>
<string>C23ACFB0-96F1-440A-A72A-61E274C519D3</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
</dict>
</array>
</dict>
<key>createdby</key>
<string>wingsuitist</string>
<key>description</key>
<string>Eject external devices</string>
<key>disabled</key>
<false/>
<key>name</key>
<string>Eject</string>
<key>objects</key>
<array>
<dict>
<key>config</key>
<dict>
<key>argumenttype</key>
<integer>2</integer>
<key>keyword</key>
<string>ejectexternal</string>
<key>text</key>
<string>Eject external</string>
<key>withspace</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.input.keyword</string>
<key>uid</key>
<string>887A5B23-A6E8-47FC-BCF4-09569787C41A</string>
<key>version</key>
<integer>0</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>concurrently</key>
<false/>
<key>escaping</key>
<integer>0</integer>
<key>script</key>
<string>#!/bin/bash
# unmount all external drives from your osx
for disk in $(diskutil list|grep external|sed -e 's/^\([^ ]*\) .*$/\1/g'); do diskutil unmountDisk $disk; done</string>
<key>type</key>
<integer>0</integer>
</dict>
<key>type</key>
<string>alfred.workflow.action.script</string>
<key>uid</key>
<string>C23ACFB0-96F1-440A-A72A-61E274C519D3</string>
<key>version</key>
<integer>0</integer>
</dict>
</array>
<key>readme</key>
<string>Looks for mounted external drives and ejects / unmounts them.</string>
<key>uidata</key>
<dict>
<key>887A5B23-A6E8-47FC-BCF4-09569787C41A</key>
<dict>
<key>ypos</key>
<real>60</real>
</dict>
<key>C23ACFB0-96F1-440A-A72A-61E274C519D3</key>
<dict>
<key>ypos</key>
<real>60</real>
</dict>
</dict>
<key>webaddress</key>
<string>https://twitter.com/wingsuitist</string>
</dict>
</plist>