Prettiest wallpaper yet
"...a selection of desktop-sized high-quality PNG images, combining
near-real-time cloud data, and some very nicely rendered
maps using satellite data, to create a nifty, nearly-live world map
desktop background wallpaper."
These things are gorgeousFor the technically inclined, you can have these beauties updating hourly as your desktop wallpaper if you are willing to wrangle with some setup.
Trackback
The URI to TrackBack this entry is: http://www.matt-ad.com/mattblog/archive/2006/08/04/prettiest-wallpaper-yet/trackbacktake two...
Your comment thingy didn't escape my less-than characters. :-)
#!/bin/sh
img=$HOME/Pictures/xplanet.png
curl -L http://taint.org/xplanet/day_clouds_2048x1024.png -o $img
/usr/bin/osascript - <<END tell application "Finder" set myFile to POSIX file "$img" as string set desktop picture to file myFile end tell END
on a mac...
If you're on a Mac and Unix-inclined, the following shell script would make a nice cron job:
#!/bin/sh
img=$HOME/Pictures/xplanet.png
curl -L http://taint.org/xplanet/day_clouds_2048x1024.png -o $img
/usr/bin/osascript - <