From d2a829c494a28a5cf6f9aaea2aa25308b8383c7b Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 18 Aug 2021 10:01:07 +0200 Subject: [PATCH] Rename to play-imperial-march.ps1 --- Data/scripts.csv | 2 +- README.md | 2 +- Scripts/play-imperial-march.ps1 | 33 +++++++++++++++++++++++++++++ Scripts/play-the-imperial-march.ps1 | 33 ----------------------------- 4 files changed, 35 insertions(+), 35 deletions(-) create mode 100755 Scripts/play-imperial-march.ps1 delete mode 100755 Scripts/play-the-imperial-march.ps1 diff --git a/Data/scripts.csv b/Data/scripts.csv index d3326682..d5bc2b08 100644 --- a/Data/scripts.csv +++ b/Data/scripts.csv @@ -156,12 +156,12 @@ open-recycle-bin.ps1, starts the File Explorer with the recycle bin folder play-beep.ps1, plays a beep sound play-files.ps1, plays the given audio files play-happy-birthday.ps1, plays the Happy Birthday song +play-imperial-march.ps1, plays the Imperial March (Star Wars) 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 pull-repo.ps1, pulls updates for the current/given Git repository (including submodules) diff --git a/README.md b/README.md index 6bc6a8e4..4b002746 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,12 @@ Mega Collection of PowerShell Scripts * [play-beep.ps1](Scripts/play-beep.ps1) - plays a beep sound * [play-files.ps1](Scripts/play-files.ps1) - plays the given audio files * [play-happy-birthday.ps1](Scripts/play-happy-birthday.ps1) - plays the Happy Birthday song +* [play-imperial-march.ps1](Scripts/play-imperial-march.ps1) - plays the Imperial March (Star Wars) * [play-mission-impossible.ps1](Scripts/play-mission-impossible.ps1) - plays the Mission Impossible theme * [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) * [speak-date.ps1](Scripts/speak-date.ps1) - speaks the current date by text-to-speech (TTS) diff --git a/Scripts/play-imperial-march.ps1 b/Scripts/play-imperial-march.ps1 new file mode 100755 index 00000000..6be3ad48 --- /dev/null +++ b/Scripts/play-imperial-march.ps1 @@ -0,0 +1,33 @@ +<# +.SYNOPSIS + play-imperial-march.ps1 +.DESCRIPTION + Plays the Imperial March (Star Wars) +.EXAMPLE + PS> .\play-imperial-march.ps1 +.LINK + https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz + License: CC0 +#> + +[System.Console]::beep(440, 500) +[System.Console]::beep(440, 500) +[System.Console]::beep(440, 500) +[System.Console]::beep(349, 350) +[System.Console]::beep(523, 150) +[System.Console]::beep(440, 500) +[System.Console]::beep(349, 350) +[System.Console]::beep(523, 150) +[System.Console]::beep(440, 1000) +[System.Console]::beep(659, 500) +[System.Console]::beep(659, 500) +[System.Console]::beep(659, 500) +[System.Console]::beep(698, 350) +[System.Console]::beep(523, 150) +[System.Console]::beep(415, 500) +[System.Console]::beep(349, 350) +[System.Console]::beep(523, 150) +[System.Console]::beep(440, 1000) +exit 0 diff --git a/Scripts/play-the-imperial-march.ps1 b/Scripts/play-the-imperial-march.ps1 deleted file mode 100755 index 761d423b..00000000 --- a/Scripts/play-the-imperial-march.ps1 +++ /dev/null @@ -1,33 +0,0 @@ -<# -.SYNOPSIS - play-the-imperial-march.ps1 -.DESCRIPTION - Plays the Imperial March (Star Wars) -.EXAMPLE - PS> .\play-the-imperial-march.ps1 -.LINK - https://github.com/fleschutz/PowerShell -.NOTES - Author: Markus Fleschutz - License: CC0 -#> - -[console]::beep(440, 500) -[console]::beep(440, 500) -[console]::beep(440, 500) -[console]::beep(349, 350) -[console]::beep(523, 150) -[console]::beep(440, 500) -[console]::beep(349, 350) -[console]::beep(523, 150) -[console]::beep(440, 1000) -[console]::beep(659, 500) -[console]::beep(659, 500) -[console]::beep(659, 500) -[console]::beep(698, 350) -[console]::beep(523, 150) -[console]::beep(415, 500) -[console]::beep(349, 350) -[console]::beep(523, 150) -[console]::beep(440, 1000) -exit 0