mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-28 02:43:35 +01:00
16 lines
361 B
PowerShell
16 lines
361 B
PowerShell
|
<#
|
|||
|
.SYNOPSIS
|
|||
|
Plays radio station Paloma
|
|||
|
.DESCRIPTION
|
|||
|
This script launches the Web browser and plays radio station Paloma.
|
|||
|
.EXAMPLE
|
|||
|
PS> ./play-radio-paloma
|
|||
|
.NOTES
|
|||
|
Author: Markus Fleschutz · License: CC0
|
|||
|
.LINK
|
|||
|
https://github.com/fleschutz/PowerShell
|
|||
|
#>
|
|||
|
|
|||
|
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/Radio-Paloma-s97169/"
|
|||
|
exit 0 # success
|