#!/bin/sh #Arguments: # 1 = Link to yahoo weather # 2 = output dir # 3 = Biggest weather code to consider url=${1-"weather.yahooapis.com/forecastrss?w=2122265&u=c?unit=c"} out=${2-"/tmp"} # ========sakya's translation======== # In order to work with QtLockscreen I need to, in the WORST case scenario: # http://weather.yahoo.com/weather.yahooapis.com/forecastrss?w=455861&u=c?unit=c # 1) Remove the 'http://weather.yahoo.com/' # 2) Translate the appended '?unit=X' to '&u=X' url=`echo "$url" | sed s/weather.yahoo.com\\\/// | sed 's/&u=[cf]//' | sed 's/?unit/\&u/'` # the only problem is that now it requires the ?unit=c to recognize celcius, but for the qtlockscreen it is ok. curr="0" cond="Unknown" high="0" loww="0" # Getting the XML and extracting the weather icon URL wget --user-agent="" -q -t 1 -T 10 -O "$out/ywtemp.xml" "$url" || { exit 1; } image=`cat "$out/ywtemp.xml" | grep "img src" | sed s'_<img src="__' | sed s'_"/><br />__'`|| { exit 1; } #echo "$image" # Setting weather conditions curr=`cat "$out/ywtemp.xml" | grep -o temp=\".* -m 1 | sed s/temp=\"// | sed s/\".*//` || { exit 1; } cond=`cat "$out/ywtemp.xml" | grep -o text=\".* -m 1 | sed s/text=\"// | sed s/\".*//` || { exit 1; } high=`cat "$out/ywtemp.xml" | grep -o high=\".* -m 1 | sed s/high=\"// | sed s/\".*//` || { exit 1; } loww=`cat "$out/ywtemp.xml" | grep -o low=\".* -m 1 | sed s/low=\"// | sed s/\".*//` || { exit 1; } # Getting the icon... # The icon has been changed to GIF by Yahoo, writing it with a PNG extension works. wget --user-agent="" -q -t 1 -T 10 -O "$out/ywtemp.png" "$image" || { exit 1; } echo "Current: $curr" echo "Conditions: $cond" echo "High: $high" echo "Low: $loww" echo "Image: $out/ywtemp.png"