diff options
author | 2022-04-27 11:25:38 +0200 | |
---|---|---|
committer | 2022-04-27 11:25:38 +0200 | |
commit | 2f03fb9f1bb43c25e2ab8723590a093e168d5b18 (patch) | |
tree | b172ae2063c4ff0cfcdd34d68112aa4a8fa63779 /dwmwttr | |
download | dwmrc-2f03fb9f1bb43c25e2ab8723590a093e168d5b18.tar.gz dwmrc-2f03fb9f1bb43c25e2ab8723590a093e168d5b18.zip |
Initial commit
Diffstat (limited to 'dwmwttr')
-rwxr-xr-x | dwmwttr | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,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; |