mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-03 05:31:03 +02:00
Update play-tetris-melody.ps1
This commit is contained in:
parent
cd77e28e04
commit
1382a6f243
@ -160,6 +160,7 @@ play-mission-impossible.ps1, plays the Mission Impossible theme
|
|||||||
play-m3u.ps1, plays the given playlist (M3U file format)
|
play-m3u.ps1, plays the given playlist (M3U file format)
|
||||||
play-mp3.ps1, plays the given sound file (MP3 file format)
|
play-mp3.ps1, plays the given sound file (MP3 file format)
|
||||||
play-super-mario.ps1, plays the Super Mario Intro
|
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)
|
play-the-imperial-march.ps1, plays the Imperial March (Star Wars)
|
||||||
poweroff.ps1, halts the local computer (needs admin rights)
|
poweroff.ps1, halts the local computer (needs admin rights)
|
||||||
publish-to-ipfs.ps1, publishes the given files or directory to IPFS
|
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.
|
@ -17,6 +17,7 @@ Mega Collection of PowerShell Scripts
|
|||||||
* [play-m3u.ps1](Scripts/play-m3u.ps1) - plays the given playlist (M3U file format)
|
* [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-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-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)
|
* [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-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)
|
* [speak-countdown.ps1](Scripts/speak-countdown.ps1) - starts a countdown by text-to-speech (TTS)
|
||||||
|
@ -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(1320,500)
|
||||||
[System.Console]::Beep(990,250)
|
[System.Console]::Beep(990,250)
|
||||||
[System.Console]::Beep(1056,250)
|
[System.Console]::Beep(1056,250)
|
||||||
|
Loading…
Reference in New Issue
Block a user