-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.weatherterm.plist
More file actions
33 lines (33 loc) · 902 Bytes
/
Copy pathcom.weatherterm.plist
File metadata and controls
33 lines (33 loc) · 902 Bytes
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
<?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>Label</key>
<string>com.weatherterm</string>
<key>ProgramArguments</key>
<array>
<string>{{.BinaryPath}}</string>
<string>run</string>
<string>-country</string>
<string>{{.CountryCode}}</string>
<string>-city</string>
<string>{{.CityName}}</string>
<string>-key</string>
<string>{{.APIKey}}</string>
<string>-unit</string>
<string>{{.Unit}}</string>
<string>-sleep</string>
<string>{{.SleepTime}}</string>
<string>-file</string>
<string>{{.File}}</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardErrorPath</key>
<string>/dev/null</string>
<key>StandardOutPath</key>
<string>/dev/null</string>
</dict>
</plist>