Improved the scripts

This commit is contained in:
Markus Fleschutz
2021-02-18 20:17:55 +01:00
parent d5032a9d02
commit 87409780ff
62 changed files with 221 additions and 202 deletions

View File

@ -6,10 +6,7 @@
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([string]$Text = "", [int]$Speed = 60) # 60 ms pause
if ($Text -eq "") {
$Text = "PowerShell is powerful! PowerShell is cross-platform! PowerShell is open-source! PowerShell is easy to learn! Powershell is fully documented"
}
param($Text = "PowerShell is powerful! PowerShell is cross-platform! PowerShell is open-source! PowerShell is easy to learn! Powershell is fully documented", [int]$Speed = 60) # 60 ms pause
function StartMarquee { param([string]$text)
$Length = $text.Length