File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
NAME,URL
2
2
Toggl Track,"https://track.toggl.com/timer"
3
3
Google Calendar,"https://calendar.google.com/calendar/u/0/r/agenda"
4
+ CNN World News,"https://edition.cnn.com/world"
4
5
Google News,"https://news.google.com"
5
6
GitHub Explore,"https://github.com/explore"
6
- Windy Weather,"https://www.windy.com/de/-Wetterradar-radar"
7
7
FlightRadar24,"https://www.flightradar24.com/27.63,-6.98/3"
8
8
Earthquake Watch,"https://www.arcgis.com/apps/dashboards/c8af9c5411814584b460cc87cb7c3780"
9
9
Live Cyber Threat Map,"https://threatmap.checkpoint.com"
10
10
Webcams,"https://www.foto-webcam.eu"
11
11
Peak webcam Zugspitze,"https://zugspitze.panomax.com"
12
12
Airport webcam Salzburg,"https://livecam.salzburg-airport.com"
13
+ Windy Weather Radar,"https://www.windy.com/de/-Weather-radar-radar"
14
+ Windy Weather Temperatures,"https://www.windy.com/-Temperature-temp"
Original file line number Diff line number Diff line change 2
2
. SYNOPSIS
3
3
Open dashboards
4
4
. DESCRIPTION
5
- This PowerShell script launches the Web browser with some dashboard websites.
5
+ This PowerShell script launches the Web browser with tabs of some dashboard websites.
6
6
. EXAMPLE
7
7
PS> ./open-dashboards
8
+ ⏳ (1/2) Loading Data/popular-dashboards.csv...
9
+ ⏳ (2/2) Launching Web browser with tabs of dashboard websites...
10
+ ...
8
11
. LINK
9
12
https://github.com/fleschutz/PowerShell
10
13
. NOTES
16
19
Write-Host " ⏳ (1/2) Loading Data/popular-dashboards.csv..."
17
20
$Table = Import-CSV " $PSScriptRoot /../Data/popular-dashboards.csv"
18
21
$NumRows = $Table.Length
19
- Write-Host " ⏳ (2/2) Launching Web browser with dashboards ... " - noNewLine
22
+ Write-Host " ⏳ (2/2) Launching Web browser with tabs of dashboard websites ... "
20
23
foreach ($Row in $Table ) {
21
24
$Name = $Row.NAME
22
25
$URL = $Row.URL
You can’t perform that action at this time.
0 commit comments