我需要显示来自 cron 作业的通知。我的 crontab 是这样的:
$ crontab -l
# m h dom mon dow command
* * * * * Display=:0.0 /usr/bin/notify-send Hey "How are you"
我检查/var/log/syslog
了该命令实际上每分钟执行一次,但它没有弹出通知。谁能帮我理解为什么?
我在 Ubuntu 18.04 上使用 i3。我解决这个问题的方法是:
* * * * * XDG_RUNTIME_DIR=/run/user/$(id -u) notify-send Hey "this is dog!"
2020 年编辑:我仍在 Ubuntu 20.04 上使用它。
我找到了答案:
$ 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"
在 Ubuntu 14.04 中,导出显示对我不起作用。下面是一个 cron 脚本,当笔记本电脑的电池状态变得太低时,我用来关闭虚拟机。行设置 DBUS_SESSION_BUS_ADDRESS 是最终使警告正常工作的修改。
#!/bin/bash
# if virtual machine is running, monitor power consumption
if pgrep -x vmware-vmx; then
bat_path="/sys/class/power_supply/BAT0/"
if [ -e "$bat_path" ]; then
bat_status=$(cat $bat_path/status)
if [ "$bat_status" == "Discharging" ]; then
bat_current=$(cat $bat_path/capacity)
# halt vm if critical; notify if low
if [ "$bat_current" -lt 10 ]; then
/path/to/vm/shutdown/script
echo "$( date +%Y.%m.%d_%T )" >> "/home/user/Desktop/VM Halt Low Battery"
elif [ "$bat_current" -lt 15 ]; then
eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME gnome-session)/environ)";
notify-send -i "/usr/share/icons/ubuntu-mono-light/status/24/battery-caution.svg" "Virtual machine will halt when battery falls below 10% charge."
fi
fi
fi
fi
exit 0
相关行在这里:
eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME gnome-session)/environ)";
我在这里找到了解决方案:https ://askubuntu.com/a/346580/255814
只有这对我有用(Xubuntu)
eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME xfce4-session)/environ)"; notify-send "hello world"
如果您在 gnome 环境中,则需要更改xfce4-session
为gnome-session
参考:https ://askubuntu.com/questions/298608/notify-send-doesnt-work-from-crontab
添加DBUS_SESSION_BUS_ADDRESS
:</p>
* * * * * DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus /usr/bin/notify-send 'helloworld..' 'msg...'
在 Fedora 22 上为我工作:
在调用 notify-send 之前将此行放在 .sh 脚本中:
eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME gnome-session)/environ)"
在最近的 Ubuntu 版本上,以下应该可以工作。
#notify_me.sh, can be placed e.g. in your home directory
#!/bin/bash
eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME gnome-session)/environ)";
# the actual notification
DISPLAY=:0 notify-send "Notify me!"
crontab
然后像往常一样向用户的 cronjobs 添加一行。
简单而简化的答案:
01 * * * * export DISPLAY=:0.0 && notify-send Hey "How are you"
如果您需要许可,这是使用变量Xauthority
的通用形式$LOGNAME
01 * * * * export DISPLAY=:0.0 && && export XAUTHORITY=/home/$LOGNAME/.Xauthority notify-send Hey "How are you"
正如@tripleee 所指出的,这里没有真正需要 sudo
我创建了一个使用 DISPLAY-:0.0 技术的 /usr/bin 脚本http://pastebin.com/h11p2HtN
它没有考虑 XAUTHORITY。我将不得不进一步调查。
与上面的nmax类似,我也通过设置DBUS_SESSION_BUS_ADDRESS
环境变量解决了这个问题。但是,我使用的是 Linux Mint 19 (xfce4) 和 XMonad 的组合,由于某种原因,我没有xfce4-session
运行该进程。相反,我发现它xfce4-terminal
(通常)正在运行,这导致我的脚本开头出现以下行:
eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME xfce4-terminal)/environ)"
这为我解决了这个问题。
如果您的 notify-send 脚本在本地工作正常但不能与 cron 作业一起使用,请使用此命令。并将“saurav”替换为您的用户名。
sudo -u saurav DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus notify-send "Your message goes here"
也许你可以试试:
* * * * * env DISPLAY=:0.0 sudo -u ravi /usr/bin/notify-send Hey "How are you"
notify-send
当你调用你的脚本时试试这个:
echo "PASSWORD" | sudo -u USER notify-send "your alert message"