-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.plist
169 lines (164 loc) · 4.22 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
<?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>net.huntermg.alfred.ipgeo</string>
<key>category</key>
<string>Tools</string>
<key>connections</key>
<dict>
<key>30BAA458-BE4A-43A7-9B5A-0427FB6A9BE1</key>
<array>
<dict>
<key>destinationuid</key>
<string>14F7E233-24D4-4A54-B257-A30113151725</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
</dict>
<key>createdby</key>
<string>hunterMG</string>
<key>description</key>
<string>Get IP/domain Geo info from an online database.</string>
<key>disabled</key>
<false/>
<key>name</key>
<string>IPGeo</string>
<key>objects</key>
<array>
<dict>
<key>config</key>
<dict>
<key>autopaste</key>
<false/>
<key>clipboardtext</key>
<string>{query}</string>
<key>ignoredynamicplaceholders</key>
<false/>
<key>transient</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.output.clipboard</string>
<key>uid</key>
<string>14F7E233-24D4-4A54-B257-A30113151725</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</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>{var:keyword}</string>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<false/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>2</integer>
<key>runningsubtext</key>
<string>Loading...</string>
<key>script</key>
<string>/usr/bin/python3 ipgeo.py "{query}"</string>
<key>scriptargtype</key>
<integer>0</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string>Type an IP address/domain to see its location & ISP</string>
<key>title</key>
<string>IP/domain Geo info query</string>
<key>type</key>
<integer>0</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>30BAA458-BE4A-43A7-9B5A-0427FB6A9BE1</string>
<key>version</key>
<integer>3</integer>
</dict>
</array>
<key>readme</key>
<string>## Usage
Simply type your keyword into Alfred (default: `ipg`) and provide a query (IP/Domain) to see its infomation from an online database.
## ‼️ Attention
It relies on `beautifulsoup4` now, which should be installed first.
Run this command in any terminal you'd like:
```
/usr/bin/python3 -m pip install beautifulsoup4
```
If you want to help remove this dependency, you can visit the GitHub repo here: <https://github.com/hunterMG/alfred-ipgeo>.</string>
<key>uidata</key>
<dict>
<key>14F7E233-24D4-4A54-B257-A30113151725</key>
<dict>
<key>xpos</key>
<real>280</real>
<key>ypos</key>
<real>75</real>
</dict>
<key>30BAA458-BE4A-43A7-9B5A-0427FB6A9BE1</key>
<dict>
<key>note</key>
<string>show location in Alfred directly</string>
<key>xpos</key>
<real>60</real>
<key>ypos</key>
<real>75</real>
</dict>
</dict>
<key>userconfigurationconfig</key>
<array>
<dict>
<key>config</key>
<dict>
<key>default</key>
<string>ipg</string>
<key>placeholder</key>
<string></string>
<key>required</key>
<true/>
<key>trim</key>
<true/>
</dict>
<key>description</key>
<string>Set your own keyword if "ipg" isn't the keyword for you :)</string>
<key>label</key>
<string>Workflow keyword</string>
<key>type</key>
<string>textfield</string>
<key>variable</key>
<string>keyword</string>
</dict>
</array>
<key>variablesdontexport</key>
<array/>
<key>version</key>
<string>0.1</string>
<key>webaddress</key>
<string>https://github.com/huntermg/alfred-ipgeo</string>
</dict>
</plist>