Add play-dance-music.ps1, play-pop-music.ps1 and play-rock-music.ps1

This commit is contained in:
Markus Fleschutz
2021-12-11 12:56:08 +01:00
parent d90a5918fc
commit e6e98e34ec
4 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Plays dance music
.DESCRIPTION
This script launches the Web browser and plays dance music.
.EXAMPLE
PS> ./play-dance-music
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/D100_Radio"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Plays pop music
.DESCRIPTION
This script launches the Web browser and plays pop music.
.EXAMPLE
PS> ./play-pop-music
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Nick_Radio"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Plays rock music
.DESCRIPTION
This script launches the Web browser and plays rock music.
.EXAMPLE
PS> ./play-rock-music
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/RADIO_BOB_BOBs_Alternative"
exit 0 # success