Siduction Forum

Siduction Forum => Scripting & Kernelhacking => Topic started by: sunrat on 2014/03/19, 13:22:26

Title: notification via cron
Post by: sunrat on 2014/03/19, 13:22:26
I am trying to make a regular notification to remind me to get out of the computer chair and have a stretch regularly. This command works as a command or single line bash script:
Code: [Select]
kdialog --passivepopup 'Get off your arse' 15However running it from cron fails, crontab:
Code: [Select]
*/5 * * * * /home/roger/bin/motivation-popup >> /home/roger/motivation.log 2>&1Log error:
Code: [Select]
Wednesday 19 March  23:15:01 EST 2014
kdialog: cannot connect to X server
Is there a simple way to modify the script to make it work? It's probably pretty basic but so is my scripting knowledge.
Title: Re: notification via cron
Post by: bluelupo on 2014/03/19, 13:40:02
Hi sunrat,
if you do not have X running on your cronjob will report this error. You have to make sure in your script that runs under that user of this cron job also runs an X session.
Title: Re: notification via cron
Post by: sunrat on 2014/03/19, 15:40:07
Thanks bluelupo. A little more research and I got it work by adding DISPLAY ENV to crontab
Code: [Select]
*/15 * * * * env DISPLAY=:0 /home/roger/bin/motivation-popup