From 9ef8b1f8915ce4c9f1ba3b044eca9096d587f075 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 1 Jun 2023 12:23:20 +0200 Subject: [PATCH] Add CNN World News --- Data/popular-dashboards.csv | 4 +++- Scripts/open-dashboards.ps1 | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Data/popular-dashboards.csv b/Data/popular-dashboards.csv index 30fcf3f4..6aefed86 100644 --- a/Data/popular-dashboards.csv +++ b/Data/popular-dashboards.csv @@ -1,12 +1,14 @@ NAME,URL Toggl Track,"https://track.toggl.com/timer" Google Calendar,"https://calendar.google.com/calendar/u/0/r/agenda" +CNN World News,"https://edition.cnn.com/world" Google News,"https://news.google.com" GitHub Explore,"https://github.com/explore" -Windy Weather,"https://www.windy.com/de/-Wetterradar-radar" FlightRadar24,"https://www.flightradar24.com/27.63,-6.98/3" Earthquake Watch,"https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780" Live Cyber Threat Map,"https://threatmap.checkpoint.com" Webcams,"https://www.foto-webcam.eu" Peak webcam Zugspitze,"https://zugspitze.panomax.com" Airport webcam Salzburg,"https://livecam.salzburg-airport.com" +Windy Weather Radar,"https://www.windy.com/de/-Weather-radar-radar" +Windy Weather Temperatures,"https://www.windy.com/-Temperature-temp" diff --git a/Scripts/open-dashboards.ps1 b/Scripts/open-dashboards.ps1 index 2dd9faa7..88e84021 100755 --- a/Scripts/open-dashboards.ps1 +++ b/Scripts/open-dashboards.ps1 @@ -2,9 +2,12 @@ .SYNOPSIS Open dashboards .DESCRIPTION - This PowerShell script launches the Web browser with some dashboard websites. + This PowerShell script launches the Web browser with tabs of some dashboard websites. .EXAMPLE PS> ./open-dashboards + ⏳ (1/2) Loading Data/popular-dashboards.csv... + ⏳ (2/2) Launching Web browser with tabs of dashboard websites... + ... .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -16,7 +19,7 @@ try { Write-Host "⏳ (1/2) Loading Data/popular-dashboards.csv..." $Table = Import-CSV "$PSScriptRoot/../Data/popular-dashboards.csv" $NumRows = $Table.Length - Write-Host "⏳ (2/2) Launching Web browser with dashboards... " -noNewLine + Write-Host "⏳ (2/2) Launching Web browser with tabs of dashboard websites... " foreach($Row in $Table) { $Name = $Row.NAME $URL = $Row.URL