Update play-tetris-melody.ps1

This commit is contained in:
Markus Fleschutz 2021-08-18 09:57:39 +02:00
parent cd77e28e04
commit 1382a6f243
3 changed files with 17 additions and 1 deletions

View File

@ -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

Can't render this file because it has a wrong number of fields in line 82.

View File

@ -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)

View File

@ -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
exit 0