linux – Cron with notify-send

前端之家收集整理的这篇文章主要介绍了linux – Cron with notify-send前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要显示一个来自cron工作的通知.我的crontab是这样的:
$crontab -l
# m h  dom mon dow   command
  * *   *   *   *    Display=:0.0 /usr/bin/notify-send Hey "How are you"

我检查了/ var / log / syslog,该命令实际上是每分钟执行一次,但不会弹出通知.
有人可以帮我理解为什么吗

解决方法

我找到答案:
$crontab -l
# m h  dom mon dow   command
  * *   *   *   *    export DISPLAY=:0.0 && export XAUTHORITY=/home/ravi/.Xauthority && sudo -u ravi /usr/bin/notify-send Hey "How are you"

谢谢,拉维

原文链接:https://www.f2er.com/linux/401057.html

猜你在找的Linux相关文章