i3weather uses location
on click
This commit is contained in:
parent
e53506ed1a
commit
202893c879
1 changed files with 5 additions and 7 deletions
|
@ -2,16 +2,14 @@
|
||||||
### This is only if your location isn't automatically detected, otherwise you can leave it blank.
|
### This is only if your location isn't automatically detected, otherwise you can leave it blank.
|
||||||
location=""
|
location=""
|
||||||
|
|
||||||
[[ $BLOCK_BUTTON = "1" ]] && st -e w3m wttr.in
|
[[ "$location" != "" ]] && location="~${location// /+}"
|
||||||
|
|
||||||
|
[[ $BLOCK_BUTTON = "1" ]] && st -e w3m wttr.in/$location
|
||||||
|
|
||||||
|
curl -s wttr.in/$location > ~/.weatherreport
|
||||||
|
|
||||||
ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
|
ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
|
||||||
|
|
||||||
if [[ "$location" != "" ]]
|
|
||||||
then
|
|
||||||
location="~${location// /+}"
|
|
||||||
fi
|
|
||||||
curl -s wttr.in/$location > ~/.weatherreport
|
|
||||||
|
|
||||||
echo -n $(cat ~/.weatherreport | sed '16q;d' | sed -e 's/[^m]*m//g' | grep -o "[0-9]*%" | sort -n | sed -e '$!d' | sed -e "s/^/☔ /g")
|
echo -n $(cat ~/.weatherreport | sed '16q;d' | sed -e 's/[^m]*m//g' | grep -o "[0-9]*%" | sort -n | sed -e '$!d' | sed -e "s/^/☔ /g")
|
||||||
|
|
||||||
cat ~/.weatherreport | sed '13q;d' | sed -e 's/[^m]*m//g;s/[^0-9]/ /g;s/ /\n/g;/^s*$/d' | grep [0-9] | sort -n | sed -e 1b -e '$!d' | tr '\n' ' ' | awk '{print " ❄️",$1 "°","☀️",$2 "°"}'
|
cat ~/.weatherreport | sed '13q;d' | sed -e 's/[^m]*m//g;s/[^0-9]/ /g;s/ /\n/g;/^s*$/d' | grep [0-9] | sort -n | sed -e 1b -e '$!d' | tr '\n' ' ' | awk '{print " ❄️",$1 "°","☀️",$2 "°"}'
|
||||||
|
|
Loading…
Reference in a new issue