#!/bin/bash

if [ -z $DISPLAY ]
then
	DIALOG=dialog
else
	DIALOG=Xdialog
fi

ZIP_CODE=32408
WEATHER_REPORT=`links -dump "http://www.weather.com/weather/print/$ZIP_CODE" | sed -n '/%$/s/\[.*\]//p'`

$DIALOG --title "Weather Report" --clear \
        --msgbox "$WEATHER_REPORT" 20 50
