Updated the weather code. It works again, but may be flakey. Watch for bugs. Also, it should use F for people in the US and C for people who are not.

This commit is contained in:
Storm Dragon 2018-07-02 19:10:17 -04:00
parent 6ddc77cb71
commit dfb19c04c7
1 changed files with 2 additions and 2 deletions

View File

@ -360,9 +360,9 @@ if [ "$speakTime" == "true" ] ; then
#Add temperature if zipcode is set
if [ -n "$zipcode" ] ; then
if [ "$torify" == "true" ] ; then
temperature="$(torify curl -s "http://mobile.wunderground.com/cgi-bin/findweather/getForecast?brand=mobile&query=${zipcode}" | grep -A 2 '<tr><td>Temperature</td>' | tr -cd '[:digit:]-.' | cut -d . -f1)"
temperature="$(torify curl -s "http://wttr.in/$zipcode?T" | grep -m 1 -Eo -e '-?[[:digit:]].*[CF]' | cut -d ' ' -f1 | sed 's/.*-//')"
else
temperature="$(curl -s "http://mobile.wunderground.com/cgi-bin/findweather/getForecast?brand=mobile&query=${zipcode}" | grep -A 2 '<tr><td>Temperature</td>' | tr -cd '[:digit:]-.' | cut -d . -f1)"
temperature="$(curl -s "http://wttr.in/$zipcode?T" | grep -m 1 -Eo -e '-?[[:digit:]].*[CF]' | cut -d ' ' -f1 | sed 's/.*-//')"
fi
if [ -n "$temperature" ] ; then
if [ "$format" = "24" ]; then