Skip to content

Commit

Permalink
updated - extended logo and colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Robomikel committed Aug 3, 2022
1 parent 06159a2 commit 3ff1bf0
Showing 1 changed file with 97 additions and 1 deletion.
98 changes: 97 additions & 1 deletion functions/core_functions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,110 @@ Function Set-Console {
}
Function Get-Logo {
Write-log "Function: $($MyInvocation.Mycommand)"
$color = "Yellow", "Magenta", "Red", "Cyan", "Green", "Blue", "Gray", "White","DarkYellow", "DarkMagenta", "DarkRed", "DarkCyan", "DarkGreen", "DarkBlue", "DarkGray" | Get-Random
$lo = 1, 2, 3, 4, 5, 6 | Get-Random
if ($lo -eq 1) {
Get-Logo0 $color
}
elseif ($lo -eq 2) {
Get-Logo1 $color
}
elseif ($lo -eq 3) {
Get-Logo2 $color
}
elseif ($lo -eq 4) {
Get-Logo3 $color
}
elseif ($lo -eq 5) {
Get-Logo4 $color
}
elseif ($lo -eq 6) {
Get-Logo5 $color
}
[console]::ForegroundColor = "White"
[console]::BackgroundColor = "Black"
}
Function Get-Logo0 {
param($color)
Write-Host "
_________ __ _________ _____
/ _____// |_ ____ _____ _____ / _____/_________ __/ \ ___________
\_____ \\ __\/ __ \\__ \ / \ \_____ \\_ __ \ \/ / \ / \ / ___\_ __ \
/ \| | \ ___/ / __ \| Y Y \/ \| | \/\ / Y \/ /_/ > | \/
/_______ /|__| \___ >____ /__|_| /_______ /|__| \_/\____|__ /\___ /|__|
\/ \/ \/ \/ \/ \//_____/
" -F C
" -F $color
}
Function Get-Logo1 {
param($color)
# Write-log "Function: $($MyInvocation.Mycommand)"
Write-Host "
_______ _______ _______ _______ __ __ _______ ______ __ __ __ __ _______ ______
| || || || _ || |_| || || _ | | | | || |_| || || _ |
| _____||_ _|| ___|| |_| || || _____|| | || | |_| || || ___|| | ||
| |_____ | | | |___ | || || |_____ | |_||_ | || || | __ | |_||_
|_____ | | | | ___|| || ||_____ || __ || || || || || __ |
_____| | | | | |___ | _ || ||_|| | _____| || | | | | | | ||_|| || |_| || | | |
|_______| |___| |_______||__| |__||_| |_||_______||___| |_| |___| |_| |_||_______||___| |_|
" -F $color
}
Function Get-Logo2 {
param($color)
Write-Host "
_____ ______ ___ ____ ___ ___ _____ __ __ ____ ___ ___ ____ ____
/ ___/| | / _] / || | |/ ___/| | || \ | | | / || \
( \_ | | / [_ | o || _ _ ( \_ | | || D )| _ _ || __|| D )
\__ ||_| |_|| _]| || \_/ |\__ || | || / | \_/ || | || /
/ \ | | | | [_ | _ || | |/ \ || : || \ | | || |_ || \
\ | | | | || | || | |\ | \ / | . \| | || || . \
\___| |__| |_____||__|__||___|___| \___| \_/ |__|\_||___|___||___,_||__|\_|
" -F $color
}
Function Get-Logo3 {
param($color)
Write-Host "
_____ _ _____ _____
| __| |_ ___ ___ _____| __|_ _ ___| |___ ___
|__ | _| -_| .'| |__ | | | _| | | | . | _|
|_____|_| |___|__,|_|_|_|_____|\_/|_| |_|_|_|_ |_|
|___|
" -F $color
}
Function Get-Logo3 {
param($color)
Write-Host "
_____ __ _____ __ ___
/ ___// /____ ____ _____ ___ / ___/ _______/ |/ /___ ______
\__ \/ __/ _ \/ __ `/ __ `__ \\__ \ | / / ___/ /|_/ / __ `/ ___/
___/ / /_/ __/ /_/ / / / / / /__/ / |/ / / / / / / /_/ / /
/____/\__/\___/\__,_/_/ /_/ /_/____/|___/_/ /_/ /_/\__, /_/
/____/
" -F $color
}
Function Get-Logo4 {
param($color)
Write-Host "
___ _ ___ __ __
/ __> _| |_ ___ ___ ._ _ _ / __> _ _ _ _ | \ \ ___ _ _
\__ \ | | / ._><_> || ' ' |\__ \| | || '_>| |/ . || '_>
<___/ |_| \___.<___||_|_|_|<___/|__/ |_| |_|_|_|\_. ||_|
<___'
" -F $color
}
Function Get-Logo5 {
param($color)
Write-Host "
_______ __ _______ ___ ___
| _ | |_.-----.---.-.--------| _ .--.--.----| Y .-----.----.
| 1___| _| -__| _ | | 1___| | | _|. | _ | _|
|____ |____|_____|___._|__|__|__|____ |\___/|__| |. \_/ |___ |__|
|: 1 | |: 1 | |: | |_____|
|::.. . | |::.. . | |::.|:. |
`-------' `-------' `--- ---'
" -F $color
}
Function Set-Steamer {
Write-log "Function: $($MyInvocation.Mycommand)"
Expand Down

0 comments on commit 3ff1bf0

Please sign in to comment.