nixos-configs/dotfiles/i3/.config/i3/scripts/miei/meteo.sh
2024-12-19 03:58:54 -05:00

9 lines
187 B
Bash
Executable file

#!/usr/bin/bash
meteo=$(curl wttr.in/Toronto?format=1 | xargs echo)
first="${meteo%% *}"
if [ "$meteo" == "" ] || [ "$first" == "Unknown" ]; then
echo " Off"
else
echo $meteo
fi