-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.plist
More file actions
47 lines (45 loc) · 1.12 KB
/
info.plist
File metadata and controls
47 lines (45 loc) · 1.12 KB
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
<?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>#Desc: Places current date in the pasteboard
#Use: cdate <type>
#Ex: cdate d
#Types of time information available are
# d-date (Day, Month Date, Year)
# s-short date (YYYYMMDD)
# t-time (HH:MM:SS AM/PM)
# b-both date & time
php -f script.php -- {query} | pbcopy
echo "Current date is now ready in the pasteboard"</string>
<key>escapequery</key>
<true/>
<key>escapequerybackquotes</key>
<false/>
<key>escapequerybrackets</key>
<false/>
<key>escapequeryquotes</key>
<true/>
<key>escapequerysemicolons</key>
<false/>
<key>growloutput</key>
<true/>
<key>growloutputsticky</key>
<false/>
<key>keyword</key>
<string>cdate</string>
<key>logging</key>
<false/>
<key>silent</key>
<true/>
<key>subtitle</key>
<string>Copy current time or date to the pasteboard</string>
<key>title</key>
<string>Copy current time/date</string>
</dict>
</plist>