我想知道如何在 Linux Mint 17 中向用户发出通知?
我想在每使用 PC 50 分钟后暂停一下 => 并在这段时间之后发出一些通知,例如:
请休息 10 分钟
如何实现这一点?
答案1
我找到了解决方案- crontab
:
- 安装
sudo apt-get install libnotify-bin
- 现在检查
notify-send "Notification Message"
- 写给
crontab -e
:50 * * * * DISPLAY=:0 /usr/bin/notify-send -i /home/nazar/Pictures/icons/download_manager.png "Break" "休息 10 分钟"
它应该准确显示通知<anyHour>:50
哪里download_manager.png
:
现在我们在 Linux Mint 中收到下一个通知:
另外,请注意,对于 Cinnamon,需要一些额外的步骤通知发送在 Cinnamon 上不起作用