diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-04-06 19:28:33 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-04-06 19:28:33 -0400 |
| commit | 29096439ac8de198511736345206e916a3a5cbe7 (patch) | |
| tree | 928172ecdccd3503c96601dafb5e6e6406ac43a0 /.local/bin/statusbar | |
| parent | d650aacb907a2458fc22d9a225f6fd3c4ab2ef28 (diff) | |
| download | eibhear-29096439ac8de198511736345206e916a3a5cbe7.tar.gz eibhear-29096439ac8de198511736345206e916a3a5cbe7.tar.zst eibhear-29096439ac8de198511736345206e916a3a5cbe7.zip | |
weather for pos, neg and signless pos temps
Diffstat (limited to '.local/bin/statusbar')
| -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 e98628e..0a501e3 100755 --- a/.local/bin/statusbar/weather +++ b/.local/bin/statusbar/weather @@ -14,7 +14,7 @@ curl -sf "wttr.in/$LOCATION" > "$HOME/.local/share/weatherreport" || exit 1 ;} # display them with coresponding emojis. showweather() { printf "%s" "$(sed '16q;d' "$HOME/.local/share/weatherreport" | grep -wo "[0-9]*%" | sort -rn | sed "s/^/☔ /g;1q" | tr -d '\n')" -sed '13q;d' "$HOME/.local/share/weatherreport" | grep -o "m\\(-\\)*[0-9]\\+" | sort -n -t 'm' -k 2n | sed -e 1b -e '$!d' | tr '\n|m' ' ' | awk '{print " ❄️",$1 "°","🌞",$2 "°"}' ;} +sed '13q;d' "$HOME/.local/share/weatherreport" | grep -o "m\\([-+]\\)*[0-9]\\+" | sort -n -t 'm' -k 2n | sed -e 1b -e '$!d' | tr '\n|m' ' ' | awk '{print " ❄️",$1 "°","🌞",$2 "°"}' ;} # The BLOCK_BUTTON bloat for clicking in i3. case $BLOCK_BUTTON in |
