mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 03:54:46 +01:00
16 lines
371 B
PowerShell
Executable File
16 lines
371 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Plays radio station Ibiza
|
|
.DESCRIPTION
|
|
This script launches the Web browser and plays radio station Ibiza.
|
|
.EXAMPLE
|
|
PS> ./play-radio-ibiza
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/Ibiza-Live-Radio-s203278/"
|
|
exit 0 # success
|