#!/bin/bash
#########################################
#                                       #
#  Shows wttr weather in a windows.     #
#  Depends on: zenity                   #
#                                       #
#  Koentje  (remon@cobrasoft.nl)        #
#                                       #
#########################################
#
# City name
city="Groesbeek"
#
# Language
lang="nl"
#
#
######################################################################
zenity --text-info --html --url="http://wttr.in/$city?F&lang=$lang"\
       --title="Weather forecast"\
       --width=926 --height=670 \
######################################################################
