Browse Source

. in 17,74 so that identifier as non-unicode can see the sign.

main
Brayan 3 years ago
parent
commit
a9c616b800
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bar-functions/dwm_weather.sh

+ 1
- 1
bar-functions/dwm_weather.sh View File

@ -14,7 +14,7 @@ dwm_weather() {
if [ "$IDENTIFIER" = "unicode" ]; then
printf "%s" "$(curl -s wttr.in/$LOCATION?format=1)"
else
printf "WEA %s" "$(curl -s wttr.in/$LOCATION?format=1 | grep -o "[0-9].*")"
printf "WEA %s" "$(curl -s wttr.in/$LOCATION?format=1 | grep -o ".[0-9].*")"
fi
printf "%s\n" "$SEP2"
}


Loading…
Cancel
Save