-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.henry.skill-insight.plist
More file actions
41 lines (40 loc) · 1.38 KB
/
Copy pathcom.henry.skill-insight.plist
File metadata and controls
41 lines (40 loc) · 1.38 KB
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
<?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">
<!--
launchd job template. Before installing, replace the TWO absolute paths below
with your real install location, then copy to ~/Library/LaunchAgents/ and load.
See README for details.
安装前把下面两处绝对路径改成你的实际安装位置,再复制到 ~/Library/LaunchAgents/ 并加载。详见 README。
1. ProgramArguments[1] -> <INSTALL_DIR>/run_skill_insight.sh
2. StandardOutPath / StandardErrorPath -> <INSTALL_DIR>/skill-log/skill_insight.log
-->
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.henry.skill-insight</string>
<key>ProgramArguments</key>
<array>
<string>/bin/zsh</string>
<string>/ABSOLUTE/PATH/TO/skill-insight/run_skill_insight.sh</string>
</array>
<key>StartCalendarInterval</key>
<dict>
<key>Weekday</key>
<integer>1</integer>
<key>Hour</key>
<integer>14</integer>
<key>Minute</key>
<integer>0</integer>
</dict>
<key>RunAtLoad</key>
<true/>
<key>ProcessType</key>
<string>Background</string>
<key>LowPriorityBackgroundIO</key>
<true/>
<key>StandardOutPath</key>
<string>/ABSOLUTE/PATH/TO/skill-insight/skill-log/skill_insight.log</string>
<key>StandardErrorPath</key>
<string>/ABSOLUTE/PATH/TO/skill-insight/skill-log/skill_insight.log</string>
</dict>
</plist>