-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.plist
116 lines (113 loc) · 2.93 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
<?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.ley.alfreTS</string>
<key>connections</key>
<dict>
<key>CC2E3396-EF18-42D4-A86B-AE78EB62761E</key>
<array>
<dict>
<key>destinationuid</key>
<string>04229AF2-782B-42F1-9718-A9AE36086296</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
</dict>
</array>
</dict>
<key>createdby</key>
<string>Kajetan Weiß</string>
<key>description</key>
<string>copy formatted current timestamp to clipboard</string>
<key>disabled</key>
<false/>
<key>name</key>
<string>alfreTS</string>
<key>objects</key>
<array>
<dict>
<key>config</key>
<dict>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>0</integer>
<key>keyword</key>
<string>now</string>
<key>script</key>
<string># -*- coding: utf-8 -*-
### edit this page to your liking ###
# <(^_^)> *free hugs* <(^o^)> #
### enter or select your locale setting: ###
#myLocale = locale.getlocale()
myLocale = 'de_DE.UTF-8'
#myLocale = 'en_GB.UTF-8'
#myLocale = 'el_GR.UTF-8'
#myLocale = 'en_US.UTF-8'
### use the formatList to specify time formats: ###
# (see "http://strftime.org/" for the format syntax)
formatList = [
(u"%Y%m%d%H%M", u"YearMonthDayHourMinute for versioning"),
(u"%x %X", u"Date and time representation appropriate to locale setting"),
(u"%A %d. %B %Y um %H:%M Uhr", u"German date representation"),
#(u"%A, %B %d, %Y at %Hh:%M %p", u"US date representation"),
]
##############################
# code... !don't edit below! #
#____________________________#
execfile("main.py")
main(formatList)</string>
<key>subtext</key>
<string>generates different timestamps</string>
<key>title</key>
<string>timestamp</string>
<key>type</key>
<integer>3</integer>
<key>withspace</key>
<false/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>CC2E3396-EF18-42D4-A86B-AE78EB62761E</string>
<key>version</key>
<integer>0</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>autopaste</key>
<false/>
<key>clipboardtext</key>
<string></string>
</dict>
<key>type</key>
<string>alfred.workflow.output.clipboard</string>
<key>uid</key>
<string>04229AF2-782B-42F1-9718-A9AE36086296</string>
<key>version</key>
<integer>0</integer>
</dict>
</array>
<key>readme</key>
<string></string>
<key>uidata</key>
<dict>
<key>04229AF2-782B-42F1-9718-A9AE36086296</key>
<dict>
<key>ypos</key>
<real>10</real>
</dict>
<key>CC2E3396-EF18-42D4-A86B-AE78EB62761E</key>
<dict>
<key>ypos</key>
<real>10</real>
</dict>
</dict>
<key>webaddress</key>
<string>https://github.com/LittleEntity/alfreTS</string>
</dict>
</plist>