mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-23 10:28:23 +02:00
Add some play-*-music.ps1 scripts
This commit is contained in:
parent
4e9e047c05
commit
58e769b940
@ -65,7 +65,7 @@ When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close
|
|||||||
|
|
||||||
*"Computer, play [genre] music."*
|
*"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.
|
When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close the Web browser.
|
||||||
|
|
||||||
|
15
Scripts/play-blues-music.ps1
Normal file
15
Scripts/play-blues-music.ps1
Normal 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
|
15
Scripts/play-classical-music.ps1
Normal file
15
Scripts/play-classical-music.ps1
Normal 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
|
15
Scripts/play-country-music.ps1
Normal file
15
Scripts/play-country-music.ps1
Normal 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
|
15
Scripts/play-folk-music.ps1
Normal file
15
Scripts/play-folk-music.ps1
Normal 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
|
15
Scripts/play-indie-music.ps1
Normal file
15
Scripts/play-indie-music.ps1
Normal 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
|
15
Scripts/play-jazz-music.ps1
Normal file
15
Scripts/play-jazz-music.ps1
Normal 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
|
15
Scripts/play-metal-music.ps1
Normal file
15
Scripts/play-metal-music.ps1
Normal 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
|
15
Scripts/play-rnb-music.ps1
Normal file
15
Scripts/play-rnb-music.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user