From 7956943d824b0682eb480a134313c2dbcfd9c80c Mon Sep 17 00:00:00 2001 From: Markus Date: Mon, 1 Nov 2021 17:43:45 +0100 Subject: [PATCH] Add play-bee-sound.ps1 --- Scripts/play-bee-sound.ps1 | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Scripts/play-bee-sound.ps1 diff --git a/Scripts/play-bee-sound.ps1 b/Scripts/play-bee-sound.ps1 new file mode 100644 index 00000000..f8550a0c --- /dev/null +++ b/Scripts/play-bee-sound.ps1 @@ -0,0 +1,19 @@ +<# +.SYNOPSIS + Plays a bee sound +.DESCRIPTION + This script plays a bee sound. +.EXAMPLE + PS> ./open-bee-sound +.NOTES + Author: Markus Fleschutz · License: CC0 +.LINK + https://github.com/fleschutz/PowerShell +#> + +try { + & "$PSScriptRoot/play-mp3.ps1" "$PSScriptRoot/Data/Sounds/bee.mp3" + exit 0 # success +} catch { + "⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" +}