i like your desktop. what is your weather script? i have the picture working, but my temp update disappeared today and it wont come back lol![]()
The weather one i have requires 2 'shell' scripts and one 'file' script:
[shell] This one just sits there: (just sits on my desktop, doesnt display anything)
curl --silent "http://weather.yahoo.com/forecast/CITYCODE.html" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather.png\
[shell] This one displays conditons and temp:
curl --silent "http://xml.weather.yahoo.com/forecastrss?p=CITYCODE&u=f" | grep -E '(Current Conditions:|F<BR)' | sed -e 's/Current Conditions://' -e 's/<br \/>//' -e 's/<b>//' -e 's/<\/b>//' -e 's/<BR \/>//' -e 's/<description>//' -e 's/<\/description>//' | tail -n1
[file] This one is the pic:
file:///tmp/weather.png
* Be sure to change "CITYCODE" to yahoo's code for your particular area.