forked from brock/Reminders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.plist
53 lines (51 loc) · 1.43 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
<?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>action</key>
<false/>
<key>category</key>
<string>SCRIPTS</string>
<key>command</key>
<string>growlnotify=$(which growlnotify | awk '{printf("%s",$0)}')
if [ ! $growlnotify == /usr/local/bin/growlnotify ]; then
echo "growlnotify wasn't found."
echo "Download it here: http://growl.info/downloads#generaldownloads"
open http://growl.info/downloads#generaldownloads
exit 1
fi
if [ ! -d ~/"Library/Application Support/Alfred/extensions/scripts/Reminders" ]; then
echo "It looks like your Alfred scripts aren't stored in the default path. You'll have to update the Reminders/script.sh wherever your Alfred scripts are stored."
exit 1
fi
/bin/bash script.sh {query}</string>
<key>disabled</key>
<false/>
<key>escapequery</key>
<false/>
<key>escapequerybackquotes</key>
<true/>
<key>escapequerybrackets</key>
<true/>
<key>escapequeryquotes</key>
<true/>
<key>escapequerysemicolons</key>
<true/>
<key>growloutput</key>
<true/>
<key>growloutputsticky</key>
<false/>
<key>keyword</key>
<string>remindme</string>
<key>logging</key>
<true/>
<key>parameter</key>
<integer>0</integer>
<key>silent</key>
<true/>
<key>subtitle</key>
<string>(remindme) (MINUTES) (about something)</string>
<key>title</key>
<string>Reminders</string>
</dict>
</plist>