mirror of
https://github.com/FabricSoul/nixos-configs.git
synced 2025-08-03 16:50:24 -04:00
9 lines
187 B
Bash
Executable file
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
|