-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplist.template.xml
More file actions
28 lines (28 loc) · 810 Bytes
/
plist.template.xml
File metadata and controls
28 lines (28 loc) · 810 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
<?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.notable-sync</string>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>{{path}}</string>
<key>HOME</key>
<string>{{home}}</string>
</dict>
<key>ProgramArguments</key>
<array>
<string>{{program}}</string>
<string>{{notif}}</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>StartInterval</key>
<integer>{{sync_interval}}</integer>
<key>StandardOutPath</key>
<string>/tmp/notable-sync.stdout</string>
<key>StandardErrorPath</key>
<string>/tmp/notable-sync.stderr</string>
</dict>
</plist>