diff options
| author | Daniel Corrêa <dnlcorrea@gmail.com> | 2020-09-18 11:29:23 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-18 10:29:23 -0400 |
| commit | 189d9072cd1e6e00872f42a92c0401212508edfa (patch) | |
| tree | a305990ff2cba76a07713000e42be1eaf7c0d40f | |
| parent | 3936ffe5e2b494e65fc5a44927fe67311c8c51ae (diff) | |
| download | eibhear-189d9072cd1e6e00872f42a92c0401212508edfa.tar.gz eibhear-189d9072cd1e6e00872f42a92c0401212508edfa.tar.zst eibhear-189d9072cd1e6e00872f42a92c0401212508edfa.zip | |
Fix typo (#817)
| -rwxr-xr-x | .local/bin/statusbar/weather | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/statusbar/weather b/.local/bin/statusbar/weather index e04bac0..6652edd 100755 --- a/.local/bin/statusbar/weather +++ b/.local/bin/statusbar/weather @@ -10,7 +10,7 @@ weatherreport="${XDG_DATA_HOME:-$HOME/.local/share}/weatherreport" getforecast() { curl -sf "wttr.in/$LOCATION" > "$weatherreport" || exit 1 ;} # Some very particular and terse stream manipulation. We get the maximum -# precipication chance and the daily high and low from the downloaded file and +# precipitation chance and the daily high and low from the downloaded file and # display them with coresponding emojis. showweather() { printf "%s" "$(sed '16q;d' "$weatherreport" | grep -wo "[0-9]*%" | sort -rn | sed "s/^/☔/g;1q" | tr -d '\n')" |
