paloalto
2018-09-10 14:32:01 +08:00
有点没看明白定时那里的设置操作。
看起来有三种方式:
1. 定时任务 crontab
*/10 * * * * <INSTALLATION_PATH> # command line arguments here
但这个方式又被作者自己否定了:
For Mac OSX Users
OSX has deprecated crontab, and replaced it with launchd. To set up a launch agent, copy the provided sample plist file in osx/org.boramalper.himawaripy.plist to ~/Library/LaunchAgents, and edit the following entries if required
也就是 mac 用户需要使用第二种方式 launchd
2. launchd
3. 然后还有一句: OR, alternatively use the provided systemd timer
在用 systemd 的时候文档说的也不明白。先是 vi systemd/himawaripy.service,编辑了,然后又说要 cp systemd/himawaripy.{service,timer} ~/.config/systemd/user/。我估计是想说 cp systemd/himawaripy.service,timer ~/.config/systemd/user/ ?不知道那个 timer 是哪里来的。最后执行的是 systemctl --user enable --now himawaripy.timer,所以有点搞不定到底是 himawaripy.timer 还是 himawaripy.service。
最后我用的是第二种 launchd 的方式,但看起来并没有成功执行,10 分钟之后,显示的是一张 macos 默认的壁纸。
不知道是不是我哪里操作不对。