mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-25 21:46:43 +01:00
Add play-dance-music.ps1, play-pop-music.ps1 and play-rock-music.ps1
This commit is contained in:
parent
d90a5918fc
commit
e6e98e34ec
@ -63,6 +63,13 @@ Launches the default Web browser with Google Maps at the given city - replace [N
|
||||
When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close the Web browser.
|
||||
|
||||
|
||||
*"Computer, play [genre] music."*
|
||||
-------------------------------
|
||||
Launches the default Web browser and plays the given music genre - replace [genre] by: `dance`, `pop`, or `rock`.
|
||||
|
||||
When finished say: *"Close tab"* or: *"Computer, close [name] browser"* to close the Web browser.
|
||||
|
||||
|
||||
*"Computer, play radio [station]."*
|
||||
-------------------------------
|
||||
Launches the default Web browser and tunes into an internet radio station - replace [station] by: `7`, `AFN Stuttgart`, `Arabella`, `Bob`, `Club Mix`, `Dance FM`, `FFN`, `Galaxy`, `Gong`, `Ibiza`, `Jam FM`, `Kiss Kiss`, `Malibu`, `N-JOY`, `Paloma`, or `You FM`.
|
||||
|
15
Scripts/play-dance-music.ps1
Normal file
15
Scripts/play-dance-music.ps1
Normal 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
|
15
Scripts/play-pop-music.ps1
Normal file
15
Scripts/play-pop-music.ps1
Normal 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
|
15
Scripts/play-rock-music.ps1
Normal file
15
Scripts/play-rock-music.ps1
Normal 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
|
Loading…
Reference in New Issue
Block a user