From 1382a6f243fcfc3dbc9304b52bad1aa74af0cbd9 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 18 Aug 2021 09:57:39 +0200 Subject: [PATCH] Update play-tetris-melody.ps1 --- Data/scripts.csv | 1 + README.md | 1 + Scripts/play-tetris-melody.ps1 | 16 +++++++++++++++- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Data/scripts.csv b/Data/scripts.csv index 9c87dab3..d3326682 100644 --- a/Data/scripts.csv +++ b/Data/scripts.csv @@ -160,6 +160,7 @@ play-mission-impossible.ps1, plays the Mission Impossible theme play-m3u.ps1, plays the given playlist (M3U file format) play-mp3.ps1, plays the given sound file (MP3 file format) play-super-mario.ps1, plays the Super Mario Intro +play-tetris-melody.ps1, plays the Tetris melody play-the-imperial-march.ps1, plays the Imperial March (Star Wars) poweroff.ps1, halts the local computer (needs admin rights) publish-to-ipfs.ps1, publishes the given files or directory to IPFS diff --git a/README.md b/README.md index 4d91c56a..6bc6a8e4 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Mega Collection of PowerShell Scripts * [play-m3u.ps1](Scripts/play-m3u.ps1) - plays the given playlist (M3U file format) * [play-mp3.ps1](Scripts/play-mp3.ps1) - plays the given sound file (MP3 file format) * [play-super-mario.ps1](Scripts/play-super-mario.ps1) - plays the Super Mario Intro +* [play-tetris-melody.ps1](Scripts/play-tetris-melody.ps1) - plays the Tetris melody * [play-the-imperial-march.ps1](Scripts/play-the-imperial-march.ps1) - plays the Imperial March (Star Wars) * [speak-checklist.ps1](Scripts/speak-checklist.ps1) - speaks the given checklist by text-to-speech (TTS) * [speak-countdown.ps1](Scripts/speak-countdown.ps1) - starts a countdown by text-to-speech (TTS) diff --git a/Scripts/play-tetris-melody.ps1 b/Scripts/play-tetris-melody.ps1 index 6336063e..fb3c4cba 100644 --- a/Scripts/play-tetris-melody.ps1 +++ b/Scripts/play-tetris-melody.ps1 @@ -1,3 +1,17 @@ +<# +.SYNOPSIS + play-tetris-melody.ps1 +.DESCRIPTION + Plays the Tetris melody +.EXAMPLE + PS> .\play-tetris-melody.ps1 +.LINK + https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz + License: CC0 +#> + [System.Console]::Beep(1320,500) [System.Console]::Beep(990,250) [System.Console]::Beep(1056,250) @@ -112,4 +126,4 @@ start-sleep -milliseconds 500 [System.Console]::Beep(660,500) [System.Console]::Beep(880,1000) [System.Console]::Beep(838,2000) -exit 0 \ No newline at end of file +exit 0