From 49b529496a8496c4f58102e185f11cd30efadc76 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 17 Feb 2025 13:09:04 +0100 Subject: [PATCH] Improved list-weather.ps1 --- scripts/list-weather.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/list-weather.ps1 b/scripts/list-weather.ps1 index 144b35d5..7c2a4d8a 100755 --- a/scripts/list-weather.ps1 +++ b/scripts/list-weather.ps1 @@ -47,7 +47,7 @@ function GetDescription([string]$text) { "Moderate snow" { return "❄️ moderate snow" } "Mist" { return "🌫 misty" } "Overcast" { return "☁️ overcast" } - "Partly cloudy" { return "⛅️partly cloudy" } + "Partly cloudy" { return "⛅️ partly cloudy" } "Patchy heavy snow" { return "❄️ patchy heavy snow ⚠️" } "Patchy light drizzle" { return "💧 patchy light drizzle" } "Patchy light rain" { return "💧 patchy light rain" } @@ -61,8 +61,8 @@ function GetDescription([string]$text) { "Patchy snow nearby" { return "❄️ patchy snow nearby" } "Patchy snow possible" { return "❄️ patchy snow possible" } "Sunny" { return "☀️ sunny" } - "Thundery outbreaks possible" { return "⚡️thundery outbreaks possible" } - "Thundery outbreaks in nearby" { return "⚡️thundery outbreaks in nearby" } + "Thundery outbreaks possible" { return "⚡️ thundery outbreaks possible" } + "Thundery outbreaks in nearby" { return "⚡️ thundery outbreaks in nearby" } default { return $text } } }