mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-16 11:40:53 +01:00
Update list-weather.ps1
This commit is contained in:
parent
eb098a1290
commit
0d99de3988
@ -17,14 +17,15 @@ param([string]$Location = "") # empty means determine automatically
|
|||||||
|
|
||||||
function Describe { param([string]$Desc)
|
function Describe { param([string]$Desc)
|
||||||
switch($Desc) {
|
switch($Desc) {
|
||||||
"Clear" { return "☀️clear " }
|
"Clear" { return "🌙 clear " }
|
||||||
"Cloudy" { return "☁️cloudy " }
|
"Cloudy" { return "☁️ cloudy " }
|
||||||
"Light drizzle" { return "💧light drizzle" }
|
"Light drizzle" { return "💧 light drizzle" }
|
||||||
"Light rain shower" { return "💧light rain " }
|
"Light rain shower" { return "💧 light rain " }
|
||||||
"Mist" { return "🌫 misty " }
|
"Mist" { return "🌫 misty " }
|
||||||
"Overcast" { return "☁️overcast " }
|
"Overcast" { return "☁️ overcast " }
|
||||||
"Partly cloudy" { return "☁️partly cloudy" }
|
"Partly cloudy" { return "☁️ partly cloudy" }
|
||||||
"Sunny" { return "☀️sunny " }
|
"Patchy rain possible" { return "💧 patchy rain possible" }
|
||||||
|
"Sunny" { return "☀️ sunny " }
|
||||||
default { return "$Desc" }
|
default { return "$Desc" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user