Update list-weather.ps1

This commit is contained in:
Markus Fleschutz 2022-11-17 10:45:37 +01:00
parent 21747f5ca1
commit 00edee9b69

View File

@ -23,10 +23,11 @@ function Describe { param([string]$Desc)
"Light rain shower" { return "💧 light rain " }
"Mist" { return "🌫 misty " }
"Overcast" { return "☁️ overcast " }
"Partly cloudy" { return "☁️ partly cloudy" }
"Partly cloudy" { return "⛅️partly cloudy" }
"Patchy light rain" { return "💧 patchy light rain" }
"Patchy rain possible" { return "💧 patchy rain possible" }
"Sunny" { return "☀️ sunny " }
"Thundery outbreaks possible" { return "thundery outbreaks possible" }
default { return "$Desc" }
}
}