Add some play-*-music.ps1 scripts

This commit is contained in:
Markus Fleschutz 2021-12-11 15:44:45 +01:00
parent 4e9e047c05
commit 58e769b940
9 changed files with 121 additions and 1 deletions

View File

@ -65,7 +65,7 @@ When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close
*"Computer, play [genre] music."*
-------------------------------
Launches the default Web browser and plays the given music genre - replace [genre] by: `dance`, `pop`, or `rock`.
Launches the default Web browser and plays the given music genre - replace [genre] by: `blues`, `classical`, `country`, `dance`, `folk`, `indie`, `jazz`, `metal`, `pop`,`RnB`, or `rock`.
When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close the Web browser.

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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