toyotacorolla

vroom
git clone https://git.davidvoz.net/toyotacorolla.git
index
logs
tree

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