weather (285B)
1 #!/bin/sh 2 3 curl -s 'https://forecast.weather.gov/meteograms/Plotter.php?' > /tmp/weather_chart # fill in the rest with your address 4 5 nsxiv -z 156 -b /tmp/weather_chart & sleep 0.1 6 xdotool search --onlyvisible --class nsxiv windowactivate --sync key f 7 wait 8 rm /tmp/weather_chart 9 exit 0