dave wrote:
> First, crontab -e to edit a crontab file. In it I have:
> 30 * * * * /usr/bin/wget -O /root/rad_at.gif
> http://weather.unisys.com/radar/rad_at.gif
> 31 * * * * xloadimage -onroot -fullscreen /root/rad_at.gif
> Your image file would probably be different for your geographic area,
> and the -O is dash OH, not ZERO.
Correction - _I_ at least needed (just found out the hard way) the path
to xloadimage:
31 * * * * /usr/X11R6/bin/xloadimage -onroot etc
Turns out that the path for the crontab entries isn't the same,
necessarily, as in your normal bash environment.
The image didn't update as it should have this last hour - that's how I
noticed. Had to be the path :-)
dave w