30

我需要显示来自 cron 作业的通知。我的 crontab 是这样的:

$ crontab -l
# m h  dom mon dow   command
  * *   *   *   *    Display=:0.0 /usr/bin/notify-send Hey "How are you"

我检查/var/log/syslog了该命令实际上每分钟执行一次,但它没有弹出通知。谁能帮我理解为什么?

4

13 回答 13

66

我在 Ubuntu 18.04 上使用 i3。我解决这个问题的方法是:

* * * * * XDG_RUNTIME_DIR=/run/user/$(id -u) notify-send Hey "this is dog!"

2020 年编辑:我仍在 Ubuntu 20.04 上使用它。

于 2018-12-03T17:07:28.583 回答
22

我找到了答案:

$ 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"
于 2013-05-13T10:39:29.017 回答
7

在 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

于 2014-10-21T01:23:57.613 回答
6

只有这对我有用(Xubuntu)

eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME xfce4-session)/environ)"; notify-send  "hello world" 

如果您在 gnome 环境中,则需要更改xfce4-sessiongnome-session

参考:https ://askubuntu.com/questions/298608/notify-send-doesnt-work-from-crontab

于 2017-02-02T08:38:17.880 回答
5

添加DBUS_SESSION_BUS_ADDRESS:</p>

* * * * * DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus /usr/bin/notify-send 'helloworld..' 'msg...'

于 2020-03-03T04:15:36.430 回答
3

在 Fedora 22 上为我工作:

在调用 notify-send 之前将此行放在 .sh 脚本中:

eval "export $(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(pgrep -u $LOGNAME gnome-session)/environ)"
于 2017-09-16T05:57:20.157 回答
2

在最近的 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 添加一行。

于 2019-10-10T14:52:49.220 回答
1

简单而简化的答案:

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

于 2018-01-10T16:21:39.047 回答
0

我创建了一个使用 DISPLAY-:0.0 技术的 /usr/bin 脚本http://pastebin.com/h11p2HtN

它没有考虑 XAUTHORITY。我将不得不进一步调查。

于 2013-11-23T07:53:22.017 回答
0

与上面的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)"

这为我解决了这个问题。

于 2020-08-04T10:18:16.640 回答
0

如果您的 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"
于 2020-08-10T09:39:55.833 回答
-1

也许你可以试试:

* * * * * env DISPLAY=:0.0 sudo -u ravi /usr/bin/notify-send Hey "How are you"

于 2013-11-24T12:45:51.590 回答
-3

notify-send当你调用你的脚本时试试这个:

echo "PASSWORD" | sudo -u USER notify-send "your alert message"

于 2013-12-03T20:52:09.733 回答