blob: 1a15cb4d07e48419492ccb60a0eeeb54259e910a (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
while true; do
#curl -s wttr.in/Ortona?format=1 | sed -E "s/^(.).*([+|-].*)/\1 \2/g" > ~/.dwm/weather_report
curl -s wttr.in/Guardiagrele?format=1 | sed -E "s/^(.).*([+|-].*)/\1 \2/g" > ~/.dwm/weather_report
sleep 1800
done;
|