From 074d98bc9ab791431b2fe4e61de8fd3aad210750 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 25 Apr 2025 14:56:46 +0200 Subject: [PATCH] Updated open-dashboards.ps1 --- scripts/open-dashboards.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/open-dashboards.ps1 b/scripts/open-dashboards.ps1 index a8457deb..5f9683b3 100755 --- a/scripts/open-dashboards.ps1 +++ b/scripts/open-dashboards.ps1 @@ -1,13 +1,13 @@ <# .SYNOPSIS - Open 20 web dashboards + Open Web dashboards .DESCRIPTION - This PowerShell script launches the Web browser with 20 tabs of popular dashboard websites. + This PowerShell script launches the Web browser with 24 tabs of popular dashboard websites. .PARAMETER timeInterval Specifies the time interval between each tab (110ms per default) .EXAMPLE PS> ./open-dashboards.ps1 - ✅ Launching Web browser with 20 tabs: Toggl Track•Google Calendar•Google Mail, ... + ✅ Launching Web browser with 24 tabs: Toggl Track•Google Calendar•Google Mail, ... NOTE: Execute './switch-tabs.ps1' to switch from tab to tab automatically. ... .LINK @@ -23,7 +23,7 @@ try { $table = Import-CSV "$PSScriptRoot/../data/popular-dashboards.csv" Write-Progress -completed "Done." - Write-Host "✅ Launching Web browser with 20 tabs: " -noNewline + Write-Host "✅ Launching Web browser with $($table.Count) tabs: " -noNewline foreach($row in $table) { Write-Host "$($row.NAME)•" -noNewline & "$PSScriptRoot/open-default-browser.ps1" "$($row.URL)"