dotfiles/.config/waybar/waybar_lvntcylmz/scripts/weather.sh
2025-12-18 12:09:34 -03:00

17 lines
No EOL
463 B
Bash

#!/usr/bin/env bash
text=$(curl -s "https://wttr.in/$1?format=%c+%f+%m")
if [[ $? == 0 ]]
then
text=$(echo "$text" | sed -E "s/\s+/ /g")
tooltip=$(curl -s "https://wttr.in/$1?format=%l:+%C+%c+%t+%w+%m")
if [[ $? == 0 ]]
then
tooltip=$(echo "$tooltip" | sed -E "s/\s+/ /g")
echo "{\"text\":\"$text\", \"tooltip\":\"$tooltip\"}"
exit
fi
fi
echo "{\"text\":\"Service Unavailable\", \"tooltip\":\"Service Unavailable\"}"