From 4373dced520337b7127d9194ec6c1693ee434f65 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 27 Sep 2023 06:48:00 +0200 Subject: [PATCH] Update open-dashboards.ps1 --- Scripts/open-dashboards.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Scripts/open-dashboards.ps1 b/Scripts/open-dashboards.ps1 index ed3f071f..15cb3eaf 100755 --- a/Scripts/open-dashboards.ps1 +++ b/Scripts/open-dashboards.ps1 @@ -5,7 +5,7 @@ This PowerShell script launches the Web browser with 20 tabs of popular dashboard websites. .EXAMPLE PS> ./open-dashboards.ps1 - ✅ Launching Web browser with 20 tabs showing: Toggl Track, Google Calendar, Google Mail, Google Keep, Google Photos, Google News, Outlook Mail, CNN News, GitHub Explore, FlightRadar24, Earthquake Watch, Live Cyber Threat Map, Live Traffic, Netflix Top 10, YouTube Music Charts, Webcams, Peak Zugspitze, Airport Salzburg, Windy Weather Radar, Windy Weather Temperatures, (Hint: execute './switch-tabs.ps1' for automated tab switching) + ✅ Launching Web browser with 20 tabs... Toggl Track, Google Calendar, Google Mail, Google Keep, Google Photos, Google News, Outlook Mail, CNN News, GitHub Explore, FlightRadar24, Earthquake Watch, Live Cyber Threat Map, Live Traffic, Netflix Top 10, YouTube Music Charts, Webcams, Peak Zugspitze, Airport Salzburg, Windy Weather Radar, Windy Weather Temperatures, (Hint: execute './switch-tabs.ps1' for automated tab switching) ... .LINK https://github.com/fleschutz/PowerShell @@ -18,7 +18,7 @@ try { $table = Import-CSV "$PSScriptRoot/../Data/popular-dashboards.csv" $numRows = $table.Length Write-Progress -completed "." - Write-Host "✅ Launching Web browser with 20 tabs showing: " -noNewline + Write-Host "✅ Launching Web browser with 20 tabs... " -noNewline foreach($row in $table) { Write-Host "$($row.NAME), " -noNewline & "$PSScriptRoot/open-default-browser.ps1" "$($row.URL)"