From c7a096833f6cc7a747f2abce5f18f39bbc614606 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 15 Nov 2021 16:31:28 +0100 Subject: [PATCH] Add play-radio-blue.ps1 and play-radio-seven.ps1 --- Scripts/play-radio-blue.ps1 | 15 +++++++++++++++ Scripts/play-radio-bob.ps1 | 4 ++-- Scripts/play-radio-gong.ps1 | 2 +- Scripts/play-radio-seven.ps1 | 15 +++++++++++++++ 4 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 Scripts/play-radio-blue.ps1 create mode 100644 Scripts/play-radio-seven.ps1 diff --git a/Scripts/play-radio-blue.ps1 b/Scripts/play-radio-blue.ps1 new file mode 100644 index 00000000..02054cff --- /dev/null +++ b/Scripts/play-radio-blue.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Plays Radio Blue 100.7 +.DESCRIPTION + This script launches the Web browser and plays radio station Blue 100.7. +.EXAMPLE + PS> ./play-radio-blue +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Blue_100.7" +exit 0 # success diff --git a/Scripts/play-radio-bob.ps1 b/Scripts/play-radio-bob.ps1 index ebacd0af..1b20e6d2 100755 --- a/Scripts/play-radio-bob.ps1 +++ b/Scripts/play-radio-bob.ps1 @@ -2,7 +2,7 @@ .SYNOPSIS Plays radio station BOB! .DESCRIPTION - This script launches the Web browser and plays radio station BOB!. + This script launches the Web browser and plays radio station BOB! .EXAMPLE PS> ./play-radio-bob .NOTES @@ -11,5 +11,5 @@ https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/RADIO-BOB-994-s96189/" +& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/RADIO_BOB_BOBs_Alternative" exit 0 # success diff --git a/Scripts/play-radio-gong.ps1 b/Scripts/play-radio-gong.ps1 index 155c463d..87222810 100755 --- a/Scripts/play-radio-gong.ps1 +++ b/Scripts/play-radio-gong.ps1 @@ -11,5 +11,5 @@ https://github.com/fleschutz/PowerShell #> -& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/Radio-Gong-963-s17494/" +& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Radio_Gong" exit 0 # success diff --git a/Scripts/play-radio-seven.ps1 b/Scripts/play-radio-seven.ps1 new file mode 100644 index 00000000..1eb0aafe --- /dev/null +++ b/Scripts/play-radio-seven.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Plays Radio 7 Ulm +.DESCRIPTION + This script launches the Web browser and plays radio station 7 Ulm. +.EXAMPLE + PS> ./play-radio-seven +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Radio_7" +exit 0 # success