mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-30 12:41:46 +02:00
Add play-dance-music.ps1, play-pop-music.ps1 and play-rock-music.ps1
This commit is contained in:
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
|
Reference in New Issue
Block a user