diff --git a/Docs/VoiceControl.md b/Docs/VoiceControl.md index 8b360ee7..2b2d647e 100644 --- a/Docs/VoiceControl.md +++ b/Docs/VoiceControl.md @@ -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`. diff --git a/Scripts/play-dance-music.ps1 b/Scripts/play-dance-music.ps1 new file mode 100644 index 00000000..7f2da931 --- /dev/null +++ b/Scripts/play-dance-music.ps1 @@ -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 diff --git a/Scripts/play-pop-music.ps1 b/Scripts/play-pop-music.ps1 new file mode 100644 index 00000000..2dcf6bf5 --- /dev/null +++ b/Scripts/play-pop-music.ps1 @@ -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 diff --git a/Scripts/play-rock-music.ps1 b/Scripts/play-rock-music.ps1 new file mode 100644 index 00000000..4b3c1da4 --- /dev/null +++ b/Scripts/play-rock-music.ps1 @@ -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