How can I show notify-send messages triggered by crontab? [duplicate]

Solution 1:

To execute any GUI related app from Cron you should export few desktop environment variables. The below solution is based on this answer where are provided more details.

How to launch any GUI related application from crontab in Ubuntu 16.04, 17.10, 18.04 and other Ubuntu distributions with Gnome

Create a startup script that will export the desktop environment variables and will launch your application. Let's call it gui-launcher. Its content should be (referencs: [1], [2] and [3]):

#!/bin/bash -e

# NAME: gui-launcher

# Check whether the user is logged-in
while [ -z "$(pgrep gnome-session -n -U $UID)" ]; do sleep 3; done

# Export the current desktop session environment variables
export $(xargs -0 -a "/proc/$(pgrep gnome-session -n -U $UID)/environ")

# Execute the input command
nohup "$@" >/dev/null 2>&1 &

exit 0
  • For other Desktop Environments change gnome-session in this part $(pgrep gnome-session -n -U $UID) with the name of the process of the DE in use, for example mate-session. A list of the most Ubuntu DE is presented here. Lubuntu implementation of the same script - here. The script could be used to launch GUI app from TTY or SSH session in the current user's Desktop session.
  • Make the file executable: chmod +x gui-launcher.
  • The script will work until the user is logged-in, including a locked screen.
  • Please don't modify and run the script as root. It could be harmful for the system!

Then use it within crontab in this way:

*/1 * * * * /full/path/to/gui-launcher "/full/path/to/the-targer-application"

Here is how it works on Ubuntu 17.10 on Wayland:

enter image description here


  • Here is presented an implementation of the same script over SSH: How to run script (.sh) files in a new terminal after connecting to Ubuntu 16.04 server via ssh?

  • Here are presented more explanations: Cron job to run python script at reboot does not work.

  • And one more example: Adjust brightness with xrandr and cron job