forked from JulianChow94/Windows-screenFetch
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLogoArt.psm1
More file actions
105 lines (98 loc) · 4.22 KB
/
LogoArt.psm1
File metadata and controls
105 lines (98 loc) · 4.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
Function New-Win10Logo() {
[string[]] $ArtArray =
"",
" ....:::: ",
" ....:::::::::::: ",
" ....:::: :::::::::::::::: ",
" ....:::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" ................ ................ ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" '''':::::::::::: :::::::::::::::: ",
" '''':::: :::::::::::::::: ",
" '''':::::::::::: ",
" '''':::: "
return $ArtArray
}
Function New-Win11Logo() {
[string[]] $ArtArray =
"",
" .::::::::::::::: :::::::::::::::. ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" '''''''''''''''' '''''''''''''''' ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" :::::::::::::::: :::::::::::::::: ",
" ''''''''''''''' ''''''''''''''' "
return $ArtArray
}
# Old windows logo from WinScreeny by Nijikokun:
# https://github.com/Nijikokun/WinScreeny
Function New-WinXPLogo() {
$esc = [char]27 # Escape character
$x1 = "$esc[31m" # Red
$x2 = "$esc[32m" # Green
$x3 = "$esc[33m" # Yellow
$x4 = "$esc[34m" # Blue
[string[]] $ArtArray =
"",
"$x1 ,.=:^!^!t3Z3z., ",
"$x1 :tt:::tt333EE3 ",
"$x1 Et:::ztt33EEE $x2@Ee., .., ",
"$x1 ;tt:::tt333EE7 $x2;EEEEEEttttt33# ",
"$x1 :Et:::zt333EEQ.$x2 SEEEEEttttt33QL ",
"$x1 it::::tt333EEF $x2@EEEEEEttttt33F ",
"$x1 ;3=*^``````'*4EEV $x2`:EEEEEEttttt33@. ",
"$x4 ,.=::::it=., $x1`` $x2@EEEEEEtttz33QF ",
"$x4 ;::::::::zt33) $x2'4EEEtttji3P* ",
"$x4 :t::::::::tt33.$x3`:Z3z.. $x2```` $x3,..g. ",
"$x4 i::::::::zt33F$x3 AEEEtttt::::ztF ",
"$x4 ;:::::::::t33V $x3;EEEttttt::::t3 ",
"$x4 E::::::::zt33L $x3@EEEtttt::::z3F ",
"$x4 {3=*^``````'*4E3) $x3;EEEtttt:::::tZ`` ",
"$x4 `` $x3`:EEEEtttt::::z7 ",
"$x3 $x3'VEzjt:;;z>*`` "
return $ArtArray
}
Function New-MacLogo() {
$esc = [char]27 # Escape character
$a1 = "$esc[32m" # Green
$a2 = "$esc[93m" # Bright Yellow
$a3 = "$esc[33m" # Yellow
$a4 = "$esc[31m" # Red
$a5 = "$esc[35m" # Magenta
$a6 = "$esc[34m" # Blue
[string[]] $ArtArray =
"",
"$a1 -/+:. ",
"$a1 :++++. ",
"$a1 /+++/. ",
"$a1 .:-::- .+/:-````.::- ",
"$a1 .:/++++++/::::/++++++/:`` ",
"$a2 .:///////////////////////:`` ",
"$a2 ////////////////////////`` ",
"$a3 -+++++++++++++++++++++++`` ",
"$a3 /++++++++++++++++++++++/ ",
"$a4 /sssssssssssssssssssssss. ",
"$a4 :ssssssssssssssssssssssss- ",
"$a5 osssssssssssssssssssssssso/`` ",
"$a5 ``syyyyyyyyyyyyyyyyyyyyyyyy+`` ",
"$a6 ``ossssssssssssssssssssss/ ",
"$a6 :ooooooooooooooooooo+. ",
"$a6 ``:+oo+/:' ':/+o+/- "
return $ArtArray
}