Its actually possible to run GUI application from cron.
1) The user who is running X should allow X authentication from all users by giving:
$ xhost +
2) The cron script should know on which X display to draw the application by:
$ export DISPLAY=:0.0
Now this will work for GUI applications started from all users.
|