summaryrefslogtreecommitdiffstats
path: root/.scripts/i3weather
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-07-12 15:47:56 -0400
committerLuke Smith <luke@lukesmith.xyz>2018-07-12 15:47:56 -0400
commit202893c8797e110879d4ba7d765fddd262331bd4 (patch)
treef8a484624a2076726478e5ba1d023cdf0eb85deb /.scripts/i3weather
parente53506ed1a1842fa1b564cc28f2de45515327cb7 (diff)
downloadeibhear-202893c8797e110879d4ba7d765fddd262331bd4.tar.gz
eibhear-202893c8797e110879d4ba7d765fddd262331bd4.tar.zst
eibhear-202893c8797e110879d4ba7d765fddd262331bd4.zip
i3weather uses `location` on click
Diffstat (limited to '.scripts/i3weather')
-rwxr-xr-x.scripts/i3weather10
1 files changed, 4 insertions, 6 deletions
diff --git a/.scripts/i3weather b/.scripts/i3weather
index b9323c2..1c4e400 100755
--- a/.scripts/i3weather
+++ b/.scripts/i3weather
@@ -2,16 +2,14 @@
### 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
+[[ "$location" != "" ]] && location="~${location// /+}"
-ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
+[[ $BLOCK_BUTTON = "1" ]] && st -e w3m wttr.in/$location
-if [[ "$location" != "" ]]
- then
- location="~${location// /+}"
-fi
curl -s wttr.in/$location > ~/.weatherreport
+ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
+
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 "°"}'