This is the script I use to download sat pics of earth. Forget where I found it
I would like the script to overwrite world.jpg each time it runs.
Set it on a 15 min cron
Not sure why, but it isn't running. Syntax?
Ultimate goal is to use world.jpg as wallpaper and have it auto-update every 15 minutes. Also have to get kde to do that. if I put the file in a dir by itself and use slideshow, it doesn't work..
Is there an easier way to do this? The other apps I have seen work with gnome and other desktops I don't want to use
Code:
#!/bin/bash wget http://www.opentopia.com/images/data/sunlight/world_sunlight_map_rectangular.jpg -O world.jpg temp=$(stat -c%s world.jpg)
Set it on a 15 min cron
Code:
*/15 * * * * /home/virgil/scripts/changer.sh
Ultimate goal is to use world.jpg as wallpaper and have it auto-update every 15 minutes. Also have to get kde to do that. if I put the file in a dir by itself and use slideshow, it doesn't work..
Is there an easier way to do this? The other apps I have seen work with gnome and other desktops I don't want to use
Comment