-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice.plist
31 lines (31 loc) · 1.32 KB
/
service.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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.github.giuscri.dotfiles</string>
<key>RunAtLoad</key>
<true/>
<key>EnvironmentVariables</key>
<dict>
<key>PATH</key>
<string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin</string>
<!-- Enter the security credentials of an AWS IAM user with s3 read/write permissions. -->
<key>AWS_ACCESS_KEY_ID</key>
<string>XXXX</string>
<key>AWS_SECRET_ACCESS_KEY</key>
<string>XXXX</string>
</dict>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/Dotfiles</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>12</integer>
<key>Minute</key>
<integer>0</integer>
</dict>
</dict>
</plist>