diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-04-05 23:13:33 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-04-05 23:13:33 -0400 |
| commit | 4471100f17dcdf33fcaafab8cb7c4947473930a5 (patch) | |
| tree | 40d978edcc785829cff87adb93465082bbe26826 /.local/bin | |
| parent | 4a5ccb5eba28cef1ea8b3f02110345470eaeec42 (diff) | |
| download | eibhear-4471100f17dcdf33fcaafab8cb7c4947473930a5.tar.gz eibhear-4471100f17dcdf33fcaafab8cb7c4947473930a5.tar.zst eibhear-4471100f17dcdf33fcaafab8cb7c4947473930a5.zip | |
negatives fix
Diffstat (limited to '.local/bin')
| -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 285ac91..34cd245 100755 --- a/.local/bin/statusbar/weather +++ b/.local/bin/statusbar/weather @@ -4,7 +4,7 @@ getforecast() { ping -q -c 1 1.1.1.1 >/dev/null || exit 1 curl -sf "wttr.in/$LOCATION" > "$HOME/.local/share/weatherreport" || exit 1 ;} showweather() { printf "%s" "$(sed '16q;d' "$HOME/.local/share/weatherreport" | grep -wo "[0-9]*%" | sort -n | sed -e '$!d' | sed -e "s/^/☔ /g" | 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 "°"}' ;} case $BLOCK_BUTTON in 1) $TERMINAL -e less -Srf "$HOME/.local/share/weatherreport" ;; |
