通知发送不适用于 cron
notify-send not working from cron
* * * * * export DISPLAY=:0.0 && usr/bin/notify-send "Hello world!"
我将上述命令添加到 crontab,notify-send 是从终端运行的,而不是从 cron 运行的。还检查了日志,它每分钟都在工作,但没有显示通知。
不知道为什么,但这行得通。而是调用通知发送直接在脚本中添加。
* * * * * export DISPLAY=:0.0 && /bin/sh /home/notifyCustom.sh
* * * * * export DISPLAY=:0.0 && usr/bin/notify-send "Hello world!"
我将上述命令添加到 crontab,notify-send 是从终端运行的,而不是从 cron 运行的。还检查了日志,它每分钟都在工作,但没有显示通知。
不知道为什么,但这行得通。而是调用通知发送直接在脚本中添加。
* * * * * export DISPLAY=:0.0 && /bin/sh /home/notifyCustom.sh