#!/bin/bash

RADAR_URL=http://image.weather.com/web/radar/us_tlh_closeradar_plus_usen.jpg
OVERLAY_URL=http://duane.freeshell.net/pclug/logos/pclug_small.png

wget $RADAR_URL -O radar.jpg
wget $OVERLAY_URL -O pclug.png

convert radar.jpg pclug.png -gravity SouthWest -composite jpg:- | xview stdin

rm radar.jpg
rm pclug.png
