我有一个自定义脚本,我想发送带有自定义消息的桌面通知(显示在屏幕右上角的通知)。我该怎么做?
答案1
还有许多其他很酷的功能notify-send
我们可以运行一个命令并使其显示在通知中:
notify-send <title> <`command`>
notify-send Date "`date`"
notify-send Disk "`df / -H`"
我们可以在通知中使用图标
notify-send -i <icon> <Message>
notify-send -i face-wink "Hello! January"
真的很烦人的弹出窗口
notify-send -t 0 "Bringing down the system"
和
notify-send <title> <message>
notify-send "who am i" "I am January"
如需更多选项,请查看这里
答案2
只是为了补充其他答案,当从 cron 本地运行命令时,我使用
DISPLAY=:0.0 /usr/bin/notify-send "TITLE" "MESSAGE"
答案3
我偶然发现了这个。答案:使用该程序notify-send
:
notify-send "Hello world!"
答案4
还有禅意- 通用 Linux 替代品notify-send
。