From a9e41af86e889c67a52ecefef4a843cfccea6f95 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz <markus@fleschutz.de> Date: Sat, 30 Oct 2021 14:56:13 +0200 Subject: [PATCH] Add several scripts --- Scripts/open-radio-absolute-chillout.ps1 | 15 +++++++++++++++ Scripts/open-radio-arabella.ps1 | 15 +++++++++++++++ Scripts/open-radio-bob.ps1 | 15 +++++++++++++++ Scripts/open-radio-club-mix.ps1 | 15 +++++++++++++++ Scripts/open-radio-f-f-n.ps1 | 15 +++++++++++++++ Scripts/open-radio-gong.ps1 | 15 +++++++++++++++ Scripts/open-radio-ibiza.ps1 | 15 +++++++++++++++ Scripts/open-radio-jam-f-m.ps1 | 15 +++++++++++++++ Scripts/open-radio-kiss-f-m.ps1 | 15 +++++++++++++++ Scripts/open-radio-kiss-kiss.ps1 | 15 +++++++++++++++ Scripts/open-radio-malibu.ps1 | 15 +++++++++++++++ Scripts/open-radio-n-joy.ps1 | 15 +++++++++++++++ Scripts/open-radio-paloma.ps1 | 15 +++++++++++++++ Scripts/open-radio-seven.ps1 | 15 +++++++++++++++ Scripts/open-radio-soft-pop.ps1 | 15 +++++++++++++++ Scripts/open-radio-top-f-m.ps1 | 15 +++++++++++++++ Scripts/open-radio-you-f-m.ps1 | 15 +++++++++++++++ 17 files changed, 255 insertions(+) create mode 100755 Scripts/open-radio-absolute-chillout.ps1 create mode 100755 Scripts/open-radio-arabella.ps1 create mode 100755 Scripts/open-radio-bob.ps1 create mode 100755 Scripts/open-radio-club-mix.ps1 create mode 100755 Scripts/open-radio-f-f-n.ps1 create mode 100755 Scripts/open-radio-gong.ps1 create mode 100755 Scripts/open-radio-ibiza.ps1 create mode 100755 Scripts/open-radio-jam-f-m.ps1 create mode 100755 Scripts/open-radio-kiss-f-m.ps1 create mode 100755 Scripts/open-radio-kiss-kiss.ps1 create mode 100755 Scripts/open-radio-malibu.ps1 create mode 100755 Scripts/open-radio-n-joy.ps1 create mode 100755 Scripts/open-radio-paloma.ps1 create mode 100755 Scripts/open-radio-seven.ps1 create mode 100755 Scripts/open-radio-soft-pop.ps1 create mode 100755 Scripts/open-radio-top-f-m.ps1 create mode 100755 Scripts/open-radio-you-f-m.ps1 diff --git a/Scripts/open-radio-absolute-chillout.ps1 b/Scripts/open-radio-absolute-chillout.ps1 new file mode 100755 index 00000000..ef280ba1 --- /dev/null +++ b/Scripts/open-radio-absolute-chillout.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station Absolute Chillout +.DESCRIPTION + This script launches the Web browser with the radio station Absolute Chillout. +.EXAMPLE + PS> ./open-radio-absolute-chillout +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/absolutechillout" +exit 0 # success diff --git a/Scripts/open-radio-arabella.ps1 b/Scripts/open-radio-arabella.ps1 new file mode 100755 index 00000000..8d75b802 --- /dev/null +++ b/Scripts/open-radio-arabella.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station Arabella +.DESCRIPTION + This script launches the Web browser with the radio station Arabella. +.EXAMPLE + PS> ./open-radio-arabella +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radioarabella" +exit 0 # success diff --git a/Scripts/open-radio-bob.ps1 b/Scripts/open-radio-bob.ps1 new file mode 100755 index 00000000..27c805d3 --- /dev/null +++ b/Scripts/open-radio-bob.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station BOB! +.DESCRIPTION + This script launches the Web browser with the radio station BOB!. +.EXAMPLE + PS> ./open-radio-bob +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiobob" +exit 0 # success diff --git a/Scripts/open-radio-club-mix.ps1 b/Scripts/open-radio-club-mix.ps1 new file mode 100755 index 00000000..73fa4a58 --- /dev/null +++ b/Scripts/open-radio-club-mix.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station CLUBMIX +.DESCRIPTION + This script launches the Web browser with the radio station CLUBMIX. +.EXAMPLE + PS> ./open-radio-club-mix +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/m1fmclubmix" +exit 0 # success diff --git a/Scripts/open-radio-f-f-n.ps1 b/Scripts/open-radio-f-f-n.ps1 new file mode 100755 index 00000000..80b585ca --- /dev/null +++ b/Scripts/open-radio-f-f-n.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station ffn +.DESCRIPTION + This script launches the Web browser with the radio station ffn. +.EXAMPLE + PS> ./open-radio-f-f-n +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/ffn" +exit 0 # success diff --git a/Scripts/open-radio-gong.ps1 b/Scripts/open-radio-gong.ps1 new file mode 100755 index 00000000..3a266985 --- /dev/null +++ b/Scripts/open-radio-gong.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station Gong +.DESCRIPTION + This script launches the Web browser with the radio station Gong. +.EXAMPLE + PS> ./open-radio-gong +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiogong" +exit 0 # success diff --git a/Scripts/open-radio-ibiza.ps1 b/Scripts/open-radio-ibiza.ps1 new file mode 100755 index 00000000..f0ce85a4 --- /dev/null +++ b/Scripts/open-radio-ibiza.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station Ibiza +.DESCRIPTION + This script launches the Web browser with the radio station Ibiza. +.EXAMPLE + PS> ./open-radio-ibiza +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/ibiza973" +exit 0 # success diff --git a/Scripts/open-radio-jam-f-m.ps1 b/Scripts/open-radio-jam-f-m.ps1 new file mode 100755 index 00000000..e917c5fb --- /dev/null +++ b/Scripts/open-radio-jam-f-m.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station JAM FM +.DESCRIPTION + This script launches the Web browser with the radio station JAM FM. +.EXAMPLE + PS> ./open-radio-jam-f-m +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/jamfm" +exit 0 # success diff --git a/Scripts/open-radio-kiss-f-m.ps1 b/Scripts/open-radio-kiss-f-m.ps1 new file mode 100755 index 00000000..8ac33c49 --- /dev/null +++ b/Scripts/open-radio-kiss-f-m.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station KISS FM +.DESCRIPTION + This script launches the Web browser with the radio station KISS FM. +.EXAMPLE + PS> ./open-radio-kiss-f-m +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/kissfm" +exit 0 # success diff --git a/Scripts/open-radio-kiss-kiss.ps1 b/Scripts/open-radio-kiss-kiss.ps1 new file mode 100755 index 00000000..f2930a93 --- /dev/null +++ b/Scripts/open-radio-kiss-kiss.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station Kiss Kiss +.DESCRIPTION + This script launches the Web browser with the radio station Kiss Kiss. +.EXAMPLE + PS> ./open-radio-kiss-kiss +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiokisskiss" +exit 0 # success diff --git a/Scripts/open-radio-malibu.ps1 b/Scripts/open-radio-malibu.ps1 new file mode 100755 index 00000000..60f7d5f1 --- /dev/null +++ b/Scripts/open-radio-malibu.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station Malibu +.DESCRIPTION + This script launches the Web browser with the radio station Malibu. +.EXAMPLE + PS> ./open-radio-malibu +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/malibufm" +exit 0 # success diff --git a/Scripts/open-radio-n-joy.ps1 b/Scripts/open-radio-n-joy.ps1 new file mode 100755 index 00000000..c1b34039 --- /dev/null +++ b/Scripts/open-radio-n-joy.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station N-JOY +.DESCRIPTION + This script launches the Web browser with the radio station N-JOY. +.EXAMPLE + PS> ./open-radio-malibu +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/n-joy" +exit 0 # success diff --git a/Scripts/open-radio-paloma.ps1 b/Scripts/open-radio-paloma.ps1 new file mode 100755 index 00000000..11b30aac --- /dev/null +++ b/Scripts/open-radio-paloma.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station Paloma +.DESCRIPTION + This script launches the Web browser with the radio station Paloma. +.EXAMPLE + PS> ./open-radio-paloma +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiopaloma" +exit 0 # success diff --git a/Scripts/open-radio-seven.ps1 b/Scripts/open-radio-seven.ps1 new file mode 100755 index 00000000..f43adc4e --- /dev/null +++ b/Scripts/open-radio-seven.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station 7 +.DESCRIPTION + This script launches the Web browser with the radio station 7. +.EXAMPLE + PS> ./open-radio-seven +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radio7" +exit 0 # success diff --git a/Scripts/open-radio-soft-pop.ps1 b/Scripts/open-radio-soft-pop.ps1 new file mode 100755 index 00000000..f666a60a --- /dev/null +++ b/Scripts/open-radio-soft-pop.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station SOFT POP +.DESCRIPTION + This script launches the Web browser with the radio station SOFT POP. +.EXAMPLE + PS> ./open-radio-soft-pop +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/m1fmsofttop" +exit 0 # success diff --git a/Scripts/open-radio-top-f-m.ps1 b/Scripts/open-radio-top-f-m.ps1 new file mode 100755 index 00000000..236288c1 --- /dev/null +++ b/Scripts/open-radio-top-f-m.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station TOP FM +.DESCRIPTION + This script launches the Web browser with the radio station TOP FM. +.EXAMPLE + PS> ./open-radio-top-f-m +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/topfm" +exit 0 # success diff --git a/Scripts/open-radio-you-f-m.ps1 b/Scripts/open-radio-you-f-m.ps1 new file mode 100755 index 00000000..409581c0 --- /dev/null +++ b/Scripts/open-radio-you-f-m.ps1 @@ -0,0 +1,15 @@ +<# +.SYNOPSIS + Opens radio station YOU FM +.DESCRIPTION + This script launches the Web browser with the radio station YOU FM. +.EXAMPLE + PS> ./open-radio-you-f-m +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/youfm" +exit 0 # success