From 5c916d69d457101326803eb076a746060e3618cf Mon Sep 17 00:00:00 2001 From: Vikas Kushwaha Date: Thu, 21 Nov 2024 13:30:52 +0530 Subject: Moved from github --- .local/bin/statusbar/i3weather | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 .local/bin/statusbar/i3weather (limited to '.local/bin/statusbar/i3weather') diff --git a/.local/bin/statusbar/i3weather b/.local/bin/statusbar/i3weather new file mode 100755 index 0000000..2d34149 --- /dev/null +++ b/.local/bin/statusbar/i3weather @@ -0,0 +1,26 @@ +#!/bin/sh +# i3block for displaying the current temperature, humidity and precipitation, if wttr.in i unavailable then WEATHER UNAVAILABLE will be displayed + +case "$BLOCK_BUTTON" in + '') ;; + 1) + $TERMINAL -e less -r ~/.cache/weather.txt & sleep 0.3 + i3-msg 'move to workspace "12: Weather"; workspace "12: Weather"' >/dev/null 2>&1 + ;; + 2) $TERMINAL -e nvim "$0" ;; + *) notify-send "⛅ Refreshing weather info..." ;; +esac + +HTTP_WEATHER="https://wttr.in/Vasai" +# weather="$(curl -s "$HTTP_WEATHER?format=%c%C++❄️+%t++☀️+%f++🌬️+%w")" +weather="$(curl -Ss "$HTTP_WEATHER?0&T&Q" | cut -c 16- | head -2 | + xargs echo "$(curl -s "$HTTP_WEATHER?format=%c")")" + +if [ "$(echo "$weather" | grep -Ec "(Unknown|curl|HTML)")" -gt 0 ]; then + echo "WEATHER UNAVAILABLE" +else + echo "${weather:-⛅ -- }" +fi + +curl -s "$HTTP_WEATHER" > ~/.cache/weather.txt + -- cgit v1.2.3