not a bad idea ; would you happen to know (or know someone) how it might be possible to pull in daily graphics from the net using a script though, even if it's not going to be in your skin?
I've written a shell script to do it, but kind of abandoned it as the source images are physically huge and will probably kill the gui...
if anyone has a better place to get them from, let me know.
Code:
#!/bin/bash
#Delete existing file if it exists
rm watch
#Grab the page we want
wget https://www.sky.com/watch
#Find all the links to the images we want and dump them in to links.txt
cat watch | grep -Eo "(http|https)://www.sky.com/assets2/[a-zA-Z0-9./?=_-]*" | sort | uniq > links.txt
#Step through the links in links.txt and download them
a=1
for link in `cat links.txt`
do
name=toppicks
extension=.jpg
wget $link -O $name$a$extension
a=$((a+1))
done