mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 20:14:00 +01:00
Add CNN World News
This commit is contained in:
parent
247873a027
commit
9ef8b1f891
@ -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"
|
||||
|
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user