From 30440a72c22a7adafe35fbe27ec3b1a8d6856e0d Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 15 May 2024 07:18:11 +0200 Subject: [PATCH] Update list-city-weather.ps1 and on-desktop-login.ps1 --- scripts/list-city-weather.ps1 | 7 ++++--- scripts/on-desktop-login.ps1 | 1 - 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/list-city-weather.ps1 b/scripts/list-city-weather.ps1 index f38fd330..17ab0cb2 100755 --- a/scripts/list-city-weather.ps1 +++ b/scripts/list-city-weather.ps1 @@ -13,17 +13,18 @@ function ListCityWeather { $Cities="Hawaii","Los Angeles","Mexico City","Dallas","Miami","New York","Rio de Janeiro","Paris","London","Berlin","Cape Town","Dubai","Mumbai","Singapore","Hong Kong","Perth","Peking","Tokyo","Sydney" + foreach($City in $Cities) { $Temp = (Invoke-WebRequest http://wttr.in/${City}?format="%t %c " -UserAgent "curl" -useBasicParsing).Content - $Clouds = (Invoke-WebRequest http://wttr.in/${City}?format="%h %p" -UserAgent "curl" -useBasicParsing).Content + $Rain = (Invoke-WebRequest http://wttr.in/${City}?format="%p %h" -UserAgent "curl" -useBasicParsing).Content $Wind = (Invoke-WebRequest http://wttr.in/${City}?format="%w" -UserAgent "curl" -useBasicParsing).Content $Sun = (Invoke-WebRequest http://wttr.in/${City}?format="%S → %s" -UserAgent "curl" -useBasicParsing).Content - New-Object PSObject -Property @{ City="$City"; Temperature="$Temp"; Clouds="$Clouds"; Wind="$Wind"; Sun="$Sun" } + New-Object PSObject -Property @{ City="$City"; Temp="$Temp"; Rain="$Rain"; Wind="$Wind"; Sun="$Sun" } } } try { - ListCityWeather | Format-Table -property @{e='City';width=17},@{e='Temperature';width=15},@{e='Clouds';width=15},@{e='Wind';width=12},@{e='Sun';width=20} + ListCityWeather | Format-Table -property @{e='City';width=17},@{e='Temp';width=13},@{e='Rain';width=15},@{e='Wind';width=12},@{e='Sun';width=20} exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" diff --git a/scripts/on-desktop-login.ps1 b/scripts/on-desktop-login.ps1 index fc271f9a..6b8c12bc 100755 --- a/scripts/on-desktop-login.ps1 +++ b/scripts/on-desktop-login.ps1 @@ -22,7 +22,6 @@ try { & "$PSScriptRoot/check-swap-space.ps1" & "$PSScriptRoot/check-drives.ps1" & "$PSScriptRoot/open-dashboards.ps1" - & "$PSScriptRoot/open-home-folder.ps1" " " & "$PSScriptRoot/write-quote.ps1" " "