mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-22 09:58:19 +02:00
Add play-radio-blue.ps1 and play-radio-seven.ps1
This commit is contained in:
parent
0587eddff9
commit
c7a096833f
15
Scripts/play-radio-blue.ps1
Normal file
15
Scripts/play-radio-blue.ps1
Normal file
@ -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
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Plays radio station BOB!
|
Plays radio station BOB!
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script launches the Web browser and plays radio station BOB!.
|
This script launches the Web browser and plays radio station BOB!
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./play-radio-bob
|
PS> ./play-radio-bob
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
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
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
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
|
exit 0 # success
|
||||||
|
15
Scripts/play-radio-seven.ps1
Normal file
15
Scripts/play-radio-seven.ps1
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user