-
Notifications
You must be signed in to change notification settings - Fork 2
/
com.ar.scoreTracker.plist
38 lines (28 loc) · 988 Bytes
/
com.ar.scoreTracker.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
<!-- reference : https://www.youtube.com/watch?v=oBVb2mbksLY -->
<?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.ar.scoreTracker</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/python3</string>
<!-- Change the program location below -->
<string>/Users/AR/Documents/Programming/Python/Pycharm/ScoreTracker/tracker.py</string>
</array>
<key>StartCalendarInterval</key>
<array>
<dict>
<key>Hour</key>
<!-- Hours part of the time -->
<integer>09</integer>
<key>Minute</key>
<!-- Minutes part of the time -->
<integer>00</integer>
</dict>
</array>
</dict>
</plist>
<!-- launchctl load ~/Library/LaunchAgents/com.ar.scoreTracker.plist - loading into launchctl-->
<!-- launchctl unload ~/Library/LaunchAgents/com.ar.scoreTracker.plist - unloading-->