diff --git a/.scripts/i3weather b/.scripts/i3weather index d5112cc..0f98b35 100755 --- a/.scripts/i3weather +++ b/.scripts/i3weather @@ -1,14 +1,16 @@ #!/bin/bash +### This is only if your location isn't automatically detected, otherwise you can leave it blank. +location="" [[ $BLOCK_BUTTON = "1" ]] && st -e w3m wttr.in ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit -### This is only if your location isn't automatically detected, otherwise you can leave it blank. -loc="" -location=${loc// /+} - -curl wttr.in/~$location > ~/.weatherreport +if [[ "$location" != "" ]] + then + location="~${location// /+}" +fi +curl wttr.in/$location > ~/.weatherreport echo -n ☔ $(cat ~/.weatherreport | sed -n 16p | sed -e 's/[^m]*m//g' | grep -o "[0-9]*%" | sort -n | sed -e '$!d')