Updated the manuals

This commit is contained in:
Markus Fleschutz
2025-05-12 22:04:02 +02:00
parent b3cdf19f4a
commit 09eb3d1808
651 changed files with 8362 additions and 1405 deletions

View File

@ -1,7 +1,7 @@
The *open-dashboards.ps1* Script
===========================
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.
Parameters
----------
@ -15,6 +15,7 @@ Parameters
Position? 1
Default value 120
Accept pipeline input? false
Aliases
Accept wildcard characters? false
[<CommonParameters>]
@ -26,7 +27,7 @@ Example
-------
```powershell
PS> ./open-dashboards.ps1
Launching Web browser with 20 tabs: Toggl TrackGoogle CalendarGoogle Mail, ...
Launching Web browser with 24 tabs: Toggl TrackGoogle CalendarGoogle Mail, ...
NOTE: Execute './switch-tabs.ps1' to switch from tab to tab automatically.
...
@ -45,14 +46,14 @@ Script Content
```powershell
<#
.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
@ -68,7 +69,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)"
@ -83,4 +84,4 @@ try {
}
```
*(page generated by convert-ps2md.ps1 as of 01/23/2025 12:15:23)*
*(page generated by convert-ps2md.ps1 as of 05/12/2025 22:02:57)*