[+] Read from distro data in python
This commit is contained in:
@@ -8,13 +8,55 @@ class AsciiArt:
|
|||||||
match: str
|
match: str
|
||||||
color: str
|
color: str
|
||||||
ascii: str
|
ascii: str
|
||||||
|
foreground: list[int]
|
||||||
|
background: int | None
|
||||||
|
|
||||||
def __init__(self, match: str, color: str, ascii: str, name: str | None = None):
|
def __init__(self, match: str, color: str, ascii: str, name: str | None = None,
|
||||||
|
foreground: list[int] | None = None, background: int | None = None):
|
||||||
self.match = match
|
self.match = match
|
||||||
self.color = color
|
self.color = color
|
||||||
self.ascii = ascii
|
self.ascii = ascii
|
||||||
self.name = name or self.get_friendly_name()
|
self.name = name or self.get_friendly_name()
|
||||||
|
self.foreground = foreground or []
|
||||||
|
self.background = background
|
||||||
|
|
||||||
def get_friendly_name(self) -> str:
|
def get_friendly_name(self) -> str:
|
||||||
return self.match.split("|")[0].strip(string.punctuation + '* ') \
|
return self.match.split("|")[0].strip(string.punctuation + '* ') \
|
||||||
.replace('"', '').replace('*', '')
|
.replace('"', '').replace('*', '')
|
||||||
|
|
||||||
|
def matches(self, name: str) -> bool:
|
||||||
|
name = name.lower()
|
||||||
|
for m in self.match.split('|'):
|
||||||
|
m = m.strip()
|
||||||
|
stripped = m.strip('*\'"').lower()
|
||||||
|
|
||||||
|
if '"*"' in m:
|
||||||
|
prefix, suffix = stripped.split('"', 1)
|
||||||
|
if name.startswith(prefix) and name.endswith(suffix):
|
||||||
|
return True
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Exact matches
|
||||||
|
if '*' not in m:
|
||||||
|
if name == stripped:
|
||||||
|
return True
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Both sides are *
|
||||||
|
if m.startswith('*') and m.endswith('*'):
|
||||||
|
if stripped in name:
|
||||||
|
return True
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Ends with *
|
||||||
|
if m.endswith('*'):
|
||||||
|
if name.startswith(stripped):
|
||||||
|
return True
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Starts with *
|
||||||
|
if m.startswith('*'):
|
||||||
|
if name.endswith(stripped):
|
||||||
|
return True
|
||||||
|
continue
|
||||||
|
return False
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
adelie = AsciiArt(match=r'''"Adélie"* | "Adelie"*''', color='4 7 6', ascii=r"""
|
|
||||||
${c1} ${c3} ,-^-___
|
|
||||||
${c3} /\\\///
|
|
||||||
${c2}refined.${c1} /\\\\//
|
|
||||||
${c2}reliable.${c1} /\\\///
|
|
||||||
${c2}ready.${c1} /\\/////\
|
|
||||||
__///\\\\/////\
|
|
||||||
${c3} _//////\\\\\\\////
|
|
||||||
${c1} ///////${c3}\\\\\\\\\\//
|
|
||||||
//////${c1}\\\\\/
|
|
||||||
/////\\\\\/
|
|
||||||
/////${c3}\\\\/
|
|
||||||
/\\///\\\/
|
|
||||||
/\\\/${c1}\\/
|
|
||||||
/\\\\//
|
|
||||||
//////
|
|
||||||
/// ${c3}\\\\\
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
aeros = AsciiArt(match=r'''"aerOS"*''', color='fg 0 0 0', ascii=r"""
|
|
||||||
${c1}
|
|
||||||
ooo OOO OOO ooo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
OOo
|
|
||||||
OOo
|
|
||||||
OOo
|
|
||||||
OOo
|
|
||||||
OOo
|
|
||||||
OOo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
oO OOo
|
|
||||||
oOO OOo
|
|
||||||
oOO OOo
|
|
||||||
ooo OOO OOO ooo
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
afterglow = AsciiArt(match=r'''"Afterglow"*''', color='5 1 3 4', ascii=r"""
|
|
||||||
${c2} .
|
|
||||||
${c1}. ${c2}.{!
|
|
||||||
${c1}.L! ${c2}J@||*
|
|
||||||
${c1}gJJJJL` ${c2}g@FFS"
|
|
||||||
${c1},@FFFJF`${c2}_g@@LLP`
|
|
||||||
${c1}_@FFFFF`${c2}_@@@@@P` ${c4}.
|
|
||||||
${c1}J@@@LLF ${c2}_@@@@@P` ${c4}.J!
|
|
||||||
${c1}g@@@@@" ${c2}_@@@@@P`${c3}. ${c4}.L|||*
|
|
||||||
${c1}g@@@@M" ${c2}"VP`${c3}.L! ${c4}<@JJJJ`
|
|
||||||
${c1}"@N" ${c3}:||||! ${c4}JFFFFS"
|
|
||||||
${c3}.{JJ||F`${c4}_gFFFF@'
|
|
||||||
${c3}.@FJJJF`${c4},@LFFFF`
|
|
||||||
${c3}_@FFFFF ${c4}VLLLP`
|
|
||||||
${c3}J@@LL@" ${c4}`"
|
|
||||||
${c3}V@@"
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
aix = AsciiArt(match=r'''"AIX"*''', color='2 7', ascii=r"""
|
|
||||||
${c1} `:+ssssossossss+-`
|
|
||||||
.oys///oyhddddhyo///sy+.
|
|
||||||
/yo:+hNNNNNNNNNNNNNNNNh+:oy/
|
|
||||||
:h/:yNNNNNNNNNNNNNNNNNNNNNNy-+h:
|
|
||||||
`ys.yNNNNNNNNNNNNNNNNNNNNNNNNNNy.ys
|
|
||||||
`h+-mNNNNNNNNNNNNNNNNNNNNNNNNNNNNm-oh
|
|
||||||
h+-NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN.oy
|
|
||||||
/d`mNNNNNNN/::mNNNd::m+:/dNNNo::dNNNd`m:
|
|
||||||
h//NNNNNNN: . .NNNh mNo od. -dNNNNN:+y
|
|
||||||
N.sNNNNNN+ -N/ -NNh mNNd. sNNNNNNNo-m
|
|
||||||
N.sNNNNNs +oo /Nh mNNs` ` /mNNNNNNo-m
|
|
||||||
h//NNNNh ossss` +h md- .hm/ `sNNNNN:+y
|
|
||||||
:d`mNNN+/yNNNNNd//y//h//oNNNNy//sNNNd`m-
|
|
||||||
yo-NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNm.ss
|
|
||||||
`h+-mNNNNNNNNNNNNNNNNNNNNNNNNNNNNm-oy
|
|
||||||
sy.yNNNNNNNNNNNNNNNNNNNNNNNNNNs.yo
|
|
||||||
:h+-yNNNNNNNNNNNNNNNNNNNNNNs-oh-
|
|
||||||
:ys:/yNNNNNNNNNNNNNNNmy/:sy:
|
|
||||||
.+ys///osyhhhhys+///sy+.
|
|
||||||
-/osssossossso/-
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
almalinux = AsciiArt(match=r'''"AlmaLinux"*''', color='1 3 4 2 6', ascii=r"""
|
|
||||||
${c1} 'c:.
|
|
||||||
${c1} lkkkx, .. ${c2}.. ,cc,
|
|
||||||
${c1} okkkk:ckkx' ${c2}.lxkkx.okkkkd
|
|
||||||
${c1} .:llcokkx' ${c2}:kkkxkko:xkkd,
|
|
||||||
${c1} .xkkkkdood: ${c2};kx, .lkxlll;
|
|
||||||
${c1} xkkx. ${c2}xk' xkkkkk:
|
|
||||||
${c1} 'xkx. ${c2}xd .....,.
|
|
||||||
${c3} .. ${c1}:xkl' ${c2}:c ..''..
|
|
||||||
${c3} .dkx' ${c1}.:ldl:'. ${c2}' ${c4}':lollldkkxo;
|
|
||||||
${c3} .''lkkko' ${c4}ckkkx.
|
|
||||||
${c3}'xkkkd:kkd. .. ${c5};' ${c4}:kkxo.
|
|
||||||
${c3},xkkkd;kk' ,d; ${c5}ld. ${c4}':dkd::cc,
|
|
||||||
${c3} .,,.;xkko'.';lxo. ${c5}dx, ${c4}:kkk'xkkkkc
|
|
||||||
${c3} 'dkkkkkxo:. ${c5};kx ${c4}.kkk:;xkkd.
|
|
||||||
${c3} ..... ${c5}.;dk:. ${c5}lkk. ${c4}:;,
|
|
||||||
${c5}:kkkkkkkdoxkkx
|
|
||||||
,c,,;;;:xkkd.
|
|
||||||
;kkkkl...
|
|
||||||
;kkkkl
|
|
||||||
,od;
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
alpine = AsciiArt(match=r'''"Alpine"*''', color='4 5 7 6', ascii=r"""
|
|
||||||
${c1} .hddddddddddddddddddddddh.
|
|
||||||
:dddddddddddddddddddddddddd:
|
|
||||||
/dddddddddddddddddddddddddddd/
|
|
||||||
+dddddddddddddddddddddddddddddd+
|
|
||||||
`sdddddddddddddddddddddddddddddddds`
|
|
||||||
`ydddddddddddd++hdddddddddddddddddddy`
|
|
||||||
.hddddddddddd+` `+ddddh:-sdddddddddddh.
|
|
||||||
hdddddddddd+` `+y: .sddddddddddh
|
|
||||||
ddddddddh+` `//` `.` -sddddddddd
|
|
||||||
ddddddh+` `/hddh/` `:s- -sddddddd
|
|
||||||
ddddh+` `/+/dddddh/` `+s- -sddddd
|
|
||||||
ddd+` `/o` :dddddddh/` `oy- .yddd
|
|
||||||
hdddyo+ohddyosdddddddddho+oydddy++ohdddh
|
|
||||||
.hddddddddddddddddddddddddddddddddddddh.
|
|
||||||
`yddddddddddddddddddddddddddddddddddy`
|
|
||||||
`sdddddddddddddddddddddddddddddddds`
|
|
||||||
+dddddddddddddddddddddddddddddd+
|
|
||||||
/dddddddddddddddddddddddddddd/
|
|
||||||
:dddddddddddddddddddddddddd:
|
|
||||||
.hddddddddddddddddddddddh.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
alpine_small = AsciiArt(match=r'''"alpine_small"''', color='4 7', ascii=r"""
|
|
||||||
${c1} /\ /\
|
|
||||||
/${c2}/ ${c1}\ \
|
|
||||||
/${c2}/ ${c1}\ \
|
|
||||||
/${c2}// ${c1}\ \
|
|
||||||
${c2}// ${c1}\ \
|
|
||||||
\
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
alter = AsciiArt(match=r'''"Alter"*''', color='6 6', ascii=r"""
|
|
||||||
${c1} %,
|
|
||||||
^WWWw
|
|
||||||
'wwwwww
|
|
||||||
!wwwwwwww
|
|
||||||
#`wwwwwwwww
|
|
||||||
@wwwwwwwwwwww
|
|
||||||
wwwwwwwwwwwwwww
|
|
||||||
wwwwwwwwwwwwwwwww
|
|
||||||
wwwwwwwwwwwwwwwwwww
|
|
||||||
wwwwwwwwwwwwwwwwwwww,
|
|
||||||
w~1i.wwwwwwwwwwwwwwwww,
|
|
||||||
3~:~1lli.wwwwwwwwwwwwwwww.
|
|
||||||
:~~:~?ttttzwwwwwwwwwwwwwwww
|
|
||||||
#<~:~~~~?llllltO-.wwwwwwwwwww
|
|
||||||
#~:~~:~:~~?ltlltlttO-.wwwwwwwww
|
|
||||||
@~:~~:~:~:~~(zttlltltlOda.wwwwwww
|
|
||||||
@~:~~: ~:~~:~:(zltlltlO a,wwwwww
|
|
||||||
8~~:~~:~~~~:~~~~_1ltltu ,www
|
|
||||||
5~~:~~:~~:~~:~~:~~~_1ltq N,,
|
|
||||||
g~:~~:~~~:~~:~~:~:~~~~1q N,
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
amazon = AsciiArt(match=r'''"Amazon"*''', color='3 7', ascii=r"""
|
|
||||||
${c1} `-/oydNNdyo:.`
|
|
||||||
`.:+shmMMMMMMMMMMMMMMmhs+:.`
|
|
||||||
-+hNNMMMMMMMMMMMMMMMMMMMMMMNNho-
|
|
||||||
.`` -/+shmNNMMMMMMNNmhs+/- ``.
|
|
||||||
dNmhs+:. `.:/oo/:.` .:+shmNd
|
|
||||||
dMMMMMMMNdhs+:.. ..:+shdNMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMNds odNMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
dMMMMMMMMMMMMMMMMh yMMMMMMMMMMMMMMMMd
|
|
||||||
.:+ydNMMMMMMMMMMMh yMMMMMMMMMMMNdy+:.
|
|
||||||
`.:+shNMMMMMh yMMMMMNhs+:``
|
|
||||||
`-+shy shs+:`
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
amogos = AsciiArt(match=r'''"AmogOS"*''', color='15 6', ascii=r"""
|
|
||||||
${c1} ___________
|
|
||||||
/ \
|
|
||||||
/ ${c2}______${c1} \
|
|
||||||
/ ${c2}/ \${c1} \
|
|
||||||
| ${c2}( )${c1} \
|
|
||||||
/ ${c2}\______/${c1} |
|
|
||||||
| |
|
|
||||||
/ \
|
|
||||||
| |
|
|
||||||
| |
|
|
||||||
/ |
|
|
||||||
| |
|
|
||||||
| _______ |
|
|
||||||
____/ / \ |
|
|
||||||
/ | | |
|
|
||||||
| / ____/ |
|
|
||||||
\_________/ / |
|
|
||||||
\ __/
|
|
||||||
\_______/
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
anarchy = AsciiArt(match=r'''"Anarchy"*''', color='7 4', ascii=r"""
|
|
||||||
${c2}..${c1}
|
|
||||||
${c2}..${c1}
|
|
||||||
${c2}:..${c1}
|
|
||||||
${c2}:+++.${c1}
|
|
||||||
.:::++${c2}++++${c1}+::.
|
|
||||||
.:+######${c2}++++${c1}######+:.
|
|
||||||
.+#########${c2}+++++${c1}##########:.
|
|
||||||
.+##########${c2}+++++++${c1}##${c2}+${c1}#########+.
|
|
||||||
+###########${c2}+++++++++${c1}############:
|
|
||||||
+##########${c2}++++++${c1}#${c2}++++${c1}#${c2}+${c1}###########+
|
|
||||||
+###########${c2}+++++${c1}###${c2}++++${c1}#${c2}+${c1}###########+
|
|
||||||
:##########${c2}+${c1}#${c2}++++${c1}####${c2}++++${c1}#${c2}+${c1}############:
|
|
||||||
###########${c2}+++++${c1}#####${c2}+++++${c1}#${c2}+${c1}###${c2}++${c1}######+
|
|
||||||
.##########${c2}++++++${c1}#####${c2}++++++++++++${c1}#######.
|
|
||||||
.##########${c2}+++++++++++++++++++${c1}###########.
|
|
||||||
#####${c2}++++++++++++++${c1}###${c2}++++++++${c1}#########+
|
|
||||||
:###${c2}++++++++++${c1}#########${c2}+++++++${c1}#########:
|
|
||||||
+######${c2}+++++${c1}##########${c2}++++++++${c1}#######+
|
|
||||||
+####${c2}+++++${c1}###########${c2}+++++++++${c1}#####+
|
|
||||||
:##${c2}++++++${c1}############${c2}++++++++++${c1}##:
|
|
||||||
.${c2}++++++${c1}#############${c2}++++++++++${c1}+.
|
|
||||||
:${c2}++++${c1}###############${c2}+++++++${c1}::
|
|
||||||
.${c2}++. .:+${c1}##############${c2}+++++++${c1}..
|
|
||||||
${c2}.:.${c1} ..::++++++::..:${c2}++++${c1}+.
|
|
||||||
${c2}.${c1} ${c2}.:+++${c1}.
|
|
||||||
${c2}.:${c1}:
|
|
||||||
${c2}..${c1}
|
|
||||||
${c2}..${c1}
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
android = AsciiArt(match=r'''"Android"*''', color='2 7', ascii=r"""
|
|
||||||
${c1} -o o-
|
|
||||||
+hydNNNNdyh+
|
|
||||||
+mMMMMMMMMMMMMm+
|
|
||||||
`dMM${c2}m:${c1}NMMMMMMN${c2}:m${c1}MMd`
|
|
||||||
hMMMMMMMMMMMMMMMMMMh
|
|
||||||
.. yyyyyyyyyyyyyyyyyyyy ..
|
|
||||||
.mMMm`MMMMMMMMMMMMMMMMMMMM`mMMm.
|
|
||||||
:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM:
|
|
||||||
:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM:
|
|
||||||
:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM:
|
|
||||||
:MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM:
|
|
||||||
-MMMM-MMMMMMMMMMMMMMMMMMMM-MMMM-
|
|
||||||
+yy+ MMMMMMMMMMMMMMMMMMMM +yy+
|
|
||||||
mMMMMMMMMMMMMMMMMMMm
|
|
||||||
`/++MMMMh++hMMMM++/`
|
|
||||||
MMMMo oMMMM
|
|
||||||
MMMMo oMMMM
|
|
||||||
oNMm- -mMNs
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
android_small = AsciiArt(match=r'''"android_small"*''', color='2 7', ascii=r"""
|
|
||||||
${c1} ;, ,;
|
|
||||||
';,.-----.,;'
|
|
||||||
,' ',
|
|
||||||
/ O O \
|
|
||||||
| |
|
|
||||||
'-----------------'
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
antergos = AsciiArt(match=r'''"Antergos"*''', color='4 6', ascii=r"""
|
|
||||||
${c2} `.-/::/-``
|
|
||||||
.-/osssssssso/.
|
|
||||||
:osyysssssssyyys+-
|
|
||||||
`.+yyyysssssssssyyyyy+.
|
|
||||||
`/syyyyyssssssssssyyyyys-`
|
|
||||||
`/yhyyyyysss${c1}++${c2}ssosyyyyhhy/`
|
|
||||||
.ohhhyyyys${c1}o++/+o${c2}so${c1}+${c2}syy${c1}+${c2}shhhho.
|
|
||||||
.shhhhys${c1}oo++//+${c2}sss${c1}+++${c2}yyy${c1}+s${c2}hhhhs.
|
|
||||||
-yhhhhs${c1}+++++++o${c2}ssso${c1}+++${c2}yyy${c1}s+o${c2}hhddy:
|
|
||||||
-yddhhy${c1}o+++++o${c2}syyss${c1}++++${c2}yyy${c1}yooy${c2}hdddy-
|
|
||||||
.yddddhs${c1}o++o${c2}syyyyys${c1}+++++${c2}yyhh${c1}sos${c2}hddddy`
|
|
||||||
`odddddhyosyhyyyyyy${c1}++++++${c2}yhhhyosddddddo
|
|
||||||
.dmdddddhhhhhhhyyyo${c1}+++++${c2}shhhhhohddddmmh.
|
|
||||||
ddmmdddddhhhhhhhso${c1}++++++${c2}yhhhhhhdddddmmdy
|
|
||||||
dmmmdddddddhhhyso${c1}++++++${c2}shhhhhddddddmmmmh
|
|
||||||
-dmmmdddddddhhys${c1}o++++o${c2}shhhhdddddddmmmmd-
|
|
||||||
.smmmmddddddddhhhhhhhhhdddddddddmmmms.
|
|
||||||
`+ydmmmdddddddddddddddddddmmmmdy/.
|
|
||||||
`.:+ooyyddddddddddddyyso+:.`
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
antix = AsciiArt(match=r'''"antiX"*''', color='1 7 3', ascii=r"""
|
|
||||||
${c1}
|
|
||||||
\
|
|
||||||
, - ~ ^ ~ - \ /
|
|
||||||
, ' \ ' , /
|
|
||||||
, \ '/
|
|
||||||
, \ / ,
|
|
||||||
,___, \/ ,
|
|
||||||
/ | _ _ _|_ o /\ ,
|
|
||||||
|, | / |/ | | | / \ ,
|
|
||||||
\,_/\_/ | |_/|_/|_/_/ \,
|
|
||||||
, / ,\
|
|
||||||
, / , ' \
|
|
||||||
' - , _ _ _ , '
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
aosc_os = AsciiArt(match=r'''"AOSC OS"*''', color='4 0 1 3', ascii=r'''
|
|
||||||
${c2} __
|
|
||||||
${c2}gpBBBBBBBBBP
|
|
||||||
${c2}_gBBBBBBBBBRP
|
|
||||||
${c2}4BBBBBBBBRP ${c4},_____
|
|
||||||
${c2}`"" ${c4}_g@@@@@@@@@@@@@%g>
|
|
||||||
${c4}__@@@@@@@@@@@@@@@@P" ${c1}___
|
|
||||||
${c4}_g@@@@@@@@@@@@@@@N"` ${c1}_gN@@@@@N^
|
|
||||||
${c4}_w@@@@@@@@@@@@@@@@P" ${c1}_g@@@@@@@P"
|
|
||||||
${c4}_g@@@@@@@@@@@@@@@N"` ${c1}VMNN@NNNM^`
|
|
||||||
${c4}^MMM@@@@@@@@@@@MP" ${c3},ggppww__
|
|
||||||
${c4}`""""" ${c3}_wNNNNNNNNNNNNNNNNNNN
|
|
||||||
${c3}_gBNNNNNNNNNNNNNNNNNP"
|
|
||||||
${c3}_wNNNNNNNNNNNNNNNNNNMP`
|
|
||||||
${c3}_gBNNNNNNNNNNNNNNNNNP"
|
|
||||||
${c3}_wNNNNNNNNNNNNNNNNNNNM^
|
|
||||||
${c3}""Y^^MNNNNNNNNNNNNP`
|
|
||||||
${c3}`"""""""
|
|
||||||
''')
|
|
||||||
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
aperio_gnu_linux = AsciiArt(match=r'''"Aperio GNU/Linux"*''', color='255', ascii=r"""
|
|
||||||
${c2}
|
|
||||||
_.._ _ ._.. _
|
|
||||||
(_][_)(/,[ |(_)
|
|
||||||
| GNU/Linux
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
aperture = AsciiArt(match=r'''"Aperture"*''', color='6 6 7 1', ascii=r"""
|
|
||||||
${c1} .,-:;//;:=,
|
|
||||||
. :H@@@MM@M#H/.,+%;,
|
|
||||||
,/X+ +M@@M@MM%=,-%HMMM@X/,
|
|
||||||
-+@MM; $M@@MH+-,;XMMMM@MMMM@+-
|
|
||||||
;@M@@M- XM@X;. -+XXXXXHHH@M@M#@/.
|
|
||||||
,%MM@@MH ,@%= .---=-=:=,.
|
|
||||||
=@#@@@MX., -%HX$$%%%:;
|
|
||||||
=-./@M@M$ .;@MMMM@MM:
|
|
||||||
X@/ -$MM/ . +MM@@@M$
|
|
||||||
,@M@H: :@: . =X#@@@@-
|
|
||||||
,@@@MMX, . /H- ;@M@M=
|
|
||||||
.H@@@@M@+, %MM+..%#$.
|
|
||||||
/MMMM@MMH/. XM@MH; =;
|
|
||||||
/%+%$XHH@$= , .H@@@@MX,
|
|
||||||
.=--------. -%H.,@@@@@MX,
|
|
||||||
.%MM@@@HHHXX$$$%+- .:$MMX =M@@MM%.
|
|
||||||
=XMMM@MM@MM#H;,-+HMM@M+ /MMMX=
|
|
||||||
=%@M@M#@$-.=$@MM@@@M; %M%=
|
|
||||||
,:+$+-,/H#MMMMMMM@= =,
|
|
||||||
=++%%%%+/:-.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
apricity = AsciiArt(match=r'''"Apricity"*''', color='4 7 1', ascii=r"""
|
|
||||||
${c2} ./o-
|
|
||||||
``...`` `:. -/:
|
|
||||||
`-+ymNMMMMMNmho-` :sdNNm/
|
|
||||||
`+dMMMMMMMMMMMMMMMmo` sh:.:::-
|
|
||||||
/mMMMMMMMMMMMMMMMMMMMm/`sNd/
|
|
||||||
oMMMMMMMMMMMMMMMMMMMMMMMs -`
|
|
||||||
:MMMMMMMMMMMMMMMMMMMMMMMMM/
|
|
||||||
NMMMMMMMMMMMMMMMMMMMMMMMMMd
|
|
||||||
MMMMMMMmdmMMMMMMMMMMMMMMMMd
|
|
||||||
MMMMMMy` .mMMMMMMMMMMMmho:`
|
|
||||||
MMMMMMNo/sMMMMMMMNdy+-.`-/
|
|
||||||
MMMMMMMMMMMMNdy+:.`.:ohmm:
|
|
||||||
MMMMMMMmhs+-.`.:+ymNMMMy.
|
|
||||||
MMMMMM/`.-/ohmNMMMMMMy-
|
|
||||||
MMMMMMNmNNMMMMMMMMmo.
|
|
||||||
MMMMMMMMMMMMMMMms:`
|
|
||||||
MMMMMMMMMMNds/.
|
|
||||||
dhhyys+/-`
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
arch = AsciiArt(match=r'''"Arch"*''', color='6 6 7 1', ascii=r"""
|
|
||||||
${c1} -`
|
|
||||||
.o+`
|
|
||||||
`ooo/
|
|
||||||
`+oooo:
|
|
||||||
`+oooooo:
|
|
||||||
-+oooooo+:
|
|
||||||
`/:-:++oooo+:
|
|
||||||
`/++++/+++++++:
|
|
||||||
`/++++++++++++++:
|
|
||||||
`/+++o${c2}oooooooo${c1}oooo/`
|
|
||||||
${c2} ${c1}./${c2}ooosssso++osssssso${c1}+`
|
|
||||||
${c2} .oossssso-````/ossssss+`
|
|
||||||
-osssssso. :ssssssso.
|
|
||||||
:osssssss/ osssso+++.
|
|
||||||
/ossssssss/ +ssssooo/-
|
|
||||||
`/ossssso+/:- -:/+osssso+-
|
|
||||||
`+sso+:-` `.-/+oso:
|
|
||||||
`++:. `-/+/
|
|
||||||
.` `/
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
arch_old = AsciiArt(match=r'''"arch_old"''', color='6 7 1', ascii=r"""
|
|
||||||
${c1} __
|
|
||||||
_=(SDGJT=_
|
|
||||||
_GTDJHGGFCVS)
|
|
||||||
,GTDJGGDTDFBGX0
|
|
||||||
${c1} JDJDIJHRORVFSBSVL${c2}-=+=,_
|
|
||||||
${c1} IJFDUFHJNXIXCDXDSV,${c2} "DEBL
|
|
||||||
${c1} [LKDSDJTDU=OUSCSBFLD.${c2} '?ZWX,
|
|
||||||
${c1} ,LMDSDSWH' `DCBOSI${c2} DRDS],
|
|
||||||
${c1} SDDFDFH' !YEWD,${c2} )HDROD
|
|
||||||
${c1} !KMDOCG &GSU|${c2}\_GFHRGO\'
|
|
||||||
${c1} HKLSGP'${c2} __${c1}\TKM0${c2}\GHRBV)'
|
|
||||||
${c1}JSNRVW'${c2} __+MNAEC${c1}\IOI,${c2}\BN'
|
|
||||||
${c1}HELK['${c2} __,=OFFXCBGHC${c1}\FD)
|
|
||||||
${c1}?KGHE ${c2}\_-#DASDFLSV='${c1} 'EF
|
|
||||||
'EHTI !H
|
|
||||||
`0F' '!
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
arch_small = AsciiArt(match=r'''"arch_small"''', color='6 7 1', ascii=r"""
|
|
||||||
${c1} /\
|
|
||||||
/ \
|
|
||||||
/\ \
|
|
||||||
${c2} / \
|
|
||||||
/ ,, \
|
|
||||||
/ | | -\
|
|
||||||
/_-'' ''-_\
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
archbox = AsciiArt(match=r'''"ArchBox"*''', color='2 7 1', ascii=r"""
|
|
||||||
${c1} ...:+oh/:::..
|
|
||||||
..-/oshhhhhh` `::::-.
|
|
||||||
.:/ohhhhhhhhhhhh` `-::::.
|
|
||||||
.+shhhhhhhhhhhhhhhhh` `.::-.
|
|
||||||
/`-:+shhhhhhhhhhhhhh` .-/+shh
|
|
||||||
/ .:/ohhhhhhhhh` .:/ohhhhhhhh
|
|
||||||
/ `-:+shhh` ..:+shhhhhhhhhhhh
|
|
||||||
/ .:ohhhhhhhhhhhhhhhhhhh
|
|
||||||
/ `hhhhhhhhhhhhhhhhhhhh
|
|
||||||
/ `hhhhhhhhhhhhhhhhhhhh
|
|
||||||
/ `hhhhhhhhhhhhhhhhhhhh
|
|
||||||
/ `hhhhhhhhhhhhhhhhhhhh
|
|
||||||
/ .+o+ `hhhhhhhhhhhhhhhhhhhh
|
|
||||||
/ -hhhhh `hhhhhhhhhhhhhhhhhhhh
|
|
||||||
/ ohhhhho `hhhhhhhhhhhhhhhhhhhh
|
|
||||||
/:::+`hhhhoos` `hhhhhhhhhhhhhhhhhs+`
|
|
||||||
`--/:` /: `hhhhhhhhhhhho/-
|
|
||||||
-/:. `hhhhhhs+:-`
|
|
||||||
::::/ho/-`
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
archcraft = AsciiArt(match=r'''"Archcraft"*''', color='6 1 2 3 4 5', ascii=r"""
|
|
||||||
${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢰⡆${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢠⣿⣿⡄${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c3}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢀⣾⣿⣿⣿⡀${c3}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c4}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣷⡀${c4}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣿⣿⣷${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c6}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢼⣿⣿⣿⣿⣿⣿⣿⣿⣧${c6}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣰⣤⣈⠻⢿⣿⣿⣿⣿⣿⣿⣧${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣰⣿⣿⣿⣿⣮⣿⣿⣿⣿⣿⣿⣿⣧${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c3}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧${c3}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c4}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧${c4}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c6}⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣿⡿⣿⣿⡟${c6}⠄⠄${c1}⠸⣿⣿⡿⣿⣿⣿⣿⣿⣷⡀${c6}⠄⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c1}⠄⠄⠄⠄⠄⠄⠄⠄${c1}⣼⣿⣿⣿⣿⣿⡏${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⠈⣿⣿⣿⣿⣿⣷⡀${c1}⠄⠄⠄⠄⠄⠄⠄
|
|
||||||
${c2}⠄⠄⠄⠄⠄⠄${c1}⢀⣼⣿⣿⣿⣿⣿⣿⡗${c2}⠄⠄⠄${c1}⢀⣠⣤⣀⠄⠄⠄${c1}⠸⣿⣿⣿⣿⣿⣿⣷⡀${c2}⠄⠄⠄⠄⠄⠄
|
|
||||||
${c3}⠄⠄⠄⠄⠄${c1}⢀⣾⣿⣿⣿⣿⣿⡏⠁${c3}⠄⠄⠄${c1}⢠⣿⣿⣿⣿⡇${c3}⠄⠄⠄⠄${c1}⢙⣿⣿⣻⠿⣿⣷⡀${c3}⠄⠄⠄⠄⠄
|
|
||||||
${c4}⠄⠄⠄⠄${c1}⢀⣾⣿⣿⣿⣿⣿⣿⣷⣤⡀${c4}⠄⠄⠄${c1}⠻⣿⣿⡿⠃${c4}⠄⠄⠄${c1}⢀⣼⣿⣿⣿⣿⣦⣌⠙⠄${c4}⠄⠄⠄⠄
|
|
||||||
${c5}⠄⠄⠄${c1}⢠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⠏${c5}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⢿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀${c5}⠄⠄⠄
|
|
||||||
${c6}⠄⠄${c1}⢠⣿⣿⣿⣿⣿⣿⣿⡿⠟⠋⠁${c6}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⠙⠻⣿⣿⣿⣿⣿⣿⣿⣿⡄${c6}⠄⠄
|
|
||||||
${c1}⠄${c1}⣠⣿⣿⣿⣿⠿⠛⠋⠁${c1}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⠉⠙⠻⢿⣿⣿⣿⣿⣆${c1}⠄
|
|
||||||
${c1}⡰⠟⠛⠉⠁${c2}⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄⠄${c1}⠉⠙⠛⠿⢆
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
archcraft_ascii = AsciiArt(match=r'''"archcraft_ascii"*''', color='6 1 2 3 4 5', ascii=r"""
|
|
||||||
${c1} -o\
|
|
||||||
:ooo:
|
|
||||||
.ooooo.
|
|
||||||
ooooooo.
|
|
||||||
+oooooooo.
|
|
||||||
-oooooooooo.
|
|
||||||
--:-+oooooooo.
|
|
||||||
yooo+=+sooooooo.
|
|
||||||
yoooooosooooooooo.
|
|
||||||
y+ooooooooooooooooo.
|
|
||||||
yoooooooooooooooooooo`
|
|
||||||
yoooooo+oo= :oo++ooooo`
|
|
||||||
:oooooo. +ooooo-
|
|
||||||
-ooooooo. .::. +ooosoo=
|
|
||||||
-oooooo` .oooo` +os-=o=
|
|
||||||
=ooooooo=: `oo+ :=ooo=--`.
|
|
||||||
+ooooooooos. .=sooooooo+-
|
|
||||||
.+osossos+-` `-+osososs+.
|
|
||||||
:sss+=-:` `:-=+ssss:
|
|
||||||
:=-:` `-=+:
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
archcraft_minimal = AsciiArt(match=r'''"archcraft_minimal"*''', color='6 1 2 3 4 5', ascii=r"""
|
|
||||||
${c1} ⢰⡆
|
|
||||||
⢠⣿⣿⡄
|
|
||||||
⢀⣾⣿⣿⣿⡀
|
|
||||||
⣼⣿⣿⣿⣿⣷⡀
|
|
||||||
⣼⣿⣿⣿⣿⣿⣿⣷
|
|
||||||
⢼⣿⣿⣿⣿⣿⣿⣿⣿⣧
|
|
||||||
⣰⣤⣈⠻⢿⣿⣿⣿⣿⣿⣿⣧
|
|
||||||
⣰⣿⣿⣿⣿⣮⣿⣿⣿⣿⣿⣿⣿⣧
|
|
||||||
⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧
|
|
||||||
⣰⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧
|
|
||||||
⣼⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧
|
|
||||||
⣼⣿⣿⣿⣿⣿⡿⣿⣿⡟ ⠸⣿⣿⡿⣿⣿⣿⣿⣿⣷⡀
|
|
||||||
⣼⣿⣿⣿⣿⣿⡏ ⠈⣿⣿⣿⣿⣿⣷⡀
|
|
||||||
⢀⣼⣿⣿⣿⣿⣿⣿⡗ ⢀⣠⣤⣀ ⠸⣿⣿⣿⣿⣿⣿⣷⡀
|
|
||||||
⢀⣾⣿⣿⣿⣿⣿⡏⠁ ⢠⣿⣿⣿⣿⡇ ⢙⣿⣿⣻⠿⣿⣷⡀
|
|
||||||
⢀⣾⣿⣿⣿⣿⣿⣿⣷⣤⡀ ⠻⣿⣿⡿⠃ ⢀⣼⣿⣿⣿⣿⣦⣌⠙
|
|
||||||
⢠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⠏ ⢿⣿⣿⣿⣿⣿⣿⣿⣿⣦⡀
|
|
||||||
⢠⣿⣿⣿⣿⣿⣿⣿⡿⠟⠋⠁ ⠙⠻⣿⣿⣿⣿⣿⣿⣿⣿⡄
|
|
||||||
⣠⣿⣿⣿⣿⠿⠛⠋⠁ ⠉⠙⠻⢿⣿⣿⣿⣿⣆
|
|
||||||
⡰⠟⠛⠉⠁ ⠉⠙⠛⠿⢆
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
archlabs = AsciiArt(match=r'''"ARCHlabs"*''', color='6 6 7 1', ascii=r"""
|
|
||||||
${c1} 'c'
|
|
||||||
'kKk,
|
|
||||||
.dKKKx.
|
|
||||||
.oKXKXKd.
|
|
||||||
.l0XXXXKKo.
|
|
||||||
c0KXXXXKX0l.
|
|
||||||
:0XKKOxxOKX0l.
|
|
||||||
:OXKOc. .c0XX0l.
|
|
||||||
:OK0o. ${c4}...${c1}'dKKX0l.
|
|
||||||
:OX0c ${c4};xOx'${c1}'dKXX0l.
|
|
||||||
:0KKo.${c4}.o0XXKd'.${c1}lKXX0l.
|
|
||||||
c0XKd.${c4}.oKXXXXKd..${c1}oKKX0l.
|
|
||||||
.c0XKk;${c4}.l0K0OO0XKd..${c1}oKXXKo.
|
|
||||||
.l0XXXk:${c4},dKx,.'l0XKo.${c1}.kXXXKo.
|
|
||||||
.o0XXXX0d,${c4}:x; .oKKx'${c1}.dXKXXKd.
|
|
||||||
.oKXXXXKK0c.${c4};. :00c'${c1}cOXXXXXKd.
|
|
||||||
.dKXXXXXXXXk,${c4}. cKx'${c1}'xKXXXXXXKx'
|
|
||||||
'xKXXXXK0kdl:. ${c4}.ok; ${c1}.cdk0KKXXXKx'
|
|
||||||
'xKK0koc,.. ${c4}'c, ${c1} ..,cok0KKk,
|
|
||||||
,xko:'. ${c4}.. ${c1} .':okx;
|
|
||||||
.,'. .',.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
archmerge = AsciiArt(match=r'''"ArchMerge"*''', color='6 6 7 1', ascii=r"""
|
|
||||||
${c1} y:
|
|
||||||
sMN-
|
|
||||||
+MMMm`
|
|
||||||
/MMMMMd`
|
|
||||||
:NMMMMMMy
|
|
||||||
-NMMMMMMMMs
|
|
||||||
.NMMMMMMMMMM+
|
|
||||||
.mMMMMMMMMMMMM+
|
|
||||||
oNMMMMMMMMMMMMM+
|
|
||||||
`+:-+NMMMMMMMMMMMM+
|
|
||||||
.sNMNhNMMMMMMMMMMMM/
|
|
||||||
`hho/sNMMMMMMMMMMMMMMM/
|
|
||||||
`.`omMMmMMMMMMMMMMMMMMMM+
|
|
||||||
.mMNdshMMMMd+::oNMMMMMMMMMo
|
|
||||||
.mMMMMMMMMM+ `yMMMMMMMMMs
|
|
||||||
.NMMMMMMMMM/ yMMMMMMMMMy
|
|
||||||
-NMMMMMMMMMh `mNMMMMMMMMd`
|
|
||||||
/NMMMNds+:.` `-/oymMMMm.
|
|
||||||
+Mmy/. `:smN:
|
|
||||||
/+. -o.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
archstrike = AsciiArt(match=r'''"ArchStrike"*''', color='8 6', ascii=r"""
|
|
||||||
${c1} *
|
|
||||||
**.
|
|
||||||
****
|
|
||||||
******
|
|
||||||
*******
|
|
||||||
** *******
|
|
||||||
**** *******
|
|
||||||
${c1}****${c2}_____${c1}***${c2}/${c1}*
|
|
||||||
***${c2}/${c1}*******${c2}//${c1}***
|
|
||||||
**${c2}/${c1}********${c2}///${c1}*${c2}/${c1}**
|
|
||||||
**${c2}/${c1}*******${c2}////${c1}***${c2}/${c1}**
|
|
||||||
**${c2}/${c1}****${c2}//////.,${c1}****${c2}/${c1}**
|
|
||||||
***${c2}/${c1}*****${c2}/////////${c1}**${c2}/${c1}***
|
|
||||||
****${c2}/${c1}**** ${c2}/////${c1}***${c2}/${c1}****
|
|
||||||
******${c2}/${c1}*** ${c2}//// ${c1}**${c2}/${c1}******
|
|
||||||
********${c2}/${c1}* ${c2}/// ${c1}*${c2}/${c1}********
|
|
||||||
,****** ${c2}// ______ / ${c1}******,
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
arcolinux = AsciiArt(match=r'''"ArcoLinux"*''', color='7 4', ascii=r"""
|
|
||||||
${c2} /-
|
|
||||||
ooo:
|
|
||||||
yoooo/
|
|
||||||
yooooooo
|
|
||||||
yooooooooo
|
|
||||||
yooooooooooo
|
|
||||||
.yooooooooooooo
|
|
||||||
.oooooooooooooooo
|
|
||||||
.oooooooarcoooooooo
|
|
||||||
.ooooooooo-oooooooooo
|
|
||||||
.ooooooooo- oooooooooo
|
|
||||||
:ooooooooo. :ooooooooo
|
|
||||||
:ooooooooo. :ooooooooo
|
|
||||||
:oooarcooo .oooarcooo
|
|
||||||
:ooooooooy .ooooooooo
|
|
||||||
:ooooooooo ${c1}/ooooooooooooooooooo${c2}
|
|
||||||
:ooooooooo ${c1}.-ooooooooooooooooo.${c2}
|
|
||||||
ooooooooo- ${c1}-ooooooooooooo.${c2}
|
|
||||||
ooooooooo- ${c1}.-oooooooooo.${c2}
|
|
||||||
ooooooooo. ${c1}-ooooooooo${c2}
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
arcolinux_small = AsciiArt(match=r'''"arcolinux_small"*''', color='7 4', ascii=r"""
|
|
||||||
${c2} A
|
|
||||||
ooo
|
|
||||||
ooooo
|
|
||||||
ooooooo
|
|
||||||
ooooooooo
|
|
||||||
ooooo ooooo
|
|
||||||
ooooo ooooo
|
|
||||||
ooooo ooooo
|
|
||||||
ooooo ${c1}<oooooooo>${c2}
|
|
||||||
ooooo ${c1}<oooooo>${c2}
|
|
||||||
ooooo ${c1}<oooo>${c2}
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
arkane = AsciiArt(match=r'''"Arkane"*''', color='7 130 237', ascii=r"""
|
|
||||||
${c3} .:..
|
|
||||||
..:::......
|
|
||||||
${c2}.${c3} .${c2}.${c3}.....
|
|
||||||
${c2}+=${c3}...${c2}==${c3}....
|
|
||||||
......:.${c1}:-${c2}:${c3}..${c1}+*${c2}=${c3}....
|
|
||||||
${c2}:----::${c3}......
|
|
||||||
${c2}.=***##*+=: ${c3}..
|
|
||||||
${c2}=${c1}***######*${c2}=
|
|
||||||
${c2}.${c1}-*######+
|
|
||||||
${c2}:+${c1}###%%%###${c3}:
|
|
||||||
${c2}-+*${c1}########+${c3}.
|
|
||||||
${c2}=++*${c1}#######${c3}-
|
|
||||||
${c2}-+=+**${c1}*####${c3}=
|
|
||||||
${c3}.${c2}-=++==***${c1}##*${c1}-
|
|
||||||
${c2}-++++++==++++=
|
|
||||||
.-+++**+++=+===${c3}.
|
|
||||||
${c2}:---===++++=-=--${c3}.
|
|
||||||
${c2}-===============${c3}-==--:
|
|
||||||
${c2}.-==+++***++*${c1}*#########${c3}=:::.
|
|
||||||
${c2}.-=++++*++++**${c1}#######%%###${c3}=
|
|
||||||
${c2}.:==++++++**${c1}#############${c3}:
|
|
||||||
${c2}.${c3}-+*++*+++==${c1}###${c3}+
|
|
||||||
-${c1}*+${c3}:
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
arselinux = AsciiArt(match=r'''"ArseLinux"*''', color='4 7', ascii=r"""
|
|
||||||
${c1}
|
|
||||||
⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⣶⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠀⠀⠀⠀⠀⠀⣴⣶⠀⠀⠀⠀⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣄⠀⠀⠀⠀⣼⠟⠁⠀⠀⢀⣀⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡀⠀⢀⣤⡀⠀⠀⠀⠉⢻⣷⡄⠀⠀⠁⠀⢀⣤⣾⡿⠟⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣷⣿⠏⠀⠀⠀⠀⠀⠀⠹⣿⡄⠀⠀⠀⠙⠉⠁⠀⠀⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⡄⠀⠀⠀⠀⠀⠀⠀⢹⣿⠀⠀⠀⠀⠠⣶⣶⣶⡶
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⠀⠀⠀⠀⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠀⠀⠀⠀⠀⠀⠀⢠⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⠂⠀⠀⠀⠀⠀⢀⣾⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣿⠇⠀⠀⠀⠀⠀⣠⣾⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⣿⣇⣀⣀⣀⣠⣴⣾⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⢸⣿⠀⠀⠀⠀⠀⣤⣤⣴⣶⣾⠿⠟⣿⡏⠙⠛⠛⠛⠋⠉⢀⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⣿⡄⠀⠀⠀⠀⠈⠉⠉⠀⠀⠀⠀⣿⡇⠀⠀⠀⠀⠀⠀⢸⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⠇⠀⠀⠀⠀⠀⠀⠘⠿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
artix = AsciiArt(match=r'''"Artix"*''', color='6 6 7 1', ascii=r"""
|
|
||||||
${c1} '
|
|
||||||
'o'
|
|
||||||
'ooo'
|
|
||||||
'ooxoo'
|
|
||||||
'ooxxxoo'
|
|
||||||
'oookkxxoo'
|
|
||||||
'oiioxkkxxoo'
|
|
||||||
':;:iiiioxxxoo'
|
|
||||||
`'.;::ioxxoo'
|
|
||||||
'-. `':;jiooo'
|
|
||||||
'oooio-.. `'i:io'
|
|
||||||
'ooooxxxxoio:,. `'-;'
|
|
||||||
'ooooxxxxxkkxoooIi:-. `'
|
|
||||||
'ooooxxxxxkkkkxoiiiiiji'
|
|
||||||
'ooooxxxxxkxxoiiii:'` .i'
|
|
||||||
'ooooxxxxxoi:::'` .;ioxo'
|
|
||||||
'ooooxooi::'` .:iiixkxxo'
|
|
||||||
'ooooi:'` `'';ioxxo'
|
|
||||||
'i:'` '':io'
|
|
||||||
'` `'
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
artix_small = AsciiArt(match=r'''"artix_small"*''', color='6 6 7 1', ascii=r"""
|
|
||||||
${c1} '
|
|
||||||
'A'
|
|
||||||
'ooo'
|
|
||||||
'ookxo'
|
|
||||||
`ookxxo'
|
|
||||||
'. `ooko'
|
|
||||||
'ooo`. `oo'
|
|
||||||
'ooxxxoo`. `'
|
|
||||||
'ookxxxkooo.` .
|
|
||||||
'ookxxkoo'` .'oo'
|
|
||||||
'ooxoo'` .:ooxxo'
|
|
||||||
'io'` `'oo'
|
|
||||||
'` `'
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
arya = AsciiArt(match=r'''"Arya"*''', color='2 1', ascii=r"""
|
|
||||||
${c1} `oyyy/${c2}-yyyyyy+
|
|
||||||
${c1} -syyyy/${c2}-yyyyyy+
|
|
||||||
${c1} .syyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} :yyyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} `/ :yyyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} .+s :yyyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} .oys :yyyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} -oyys :yyyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} :syyys :yyyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} /syyyys :yyyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} +yyyyyys :yyyyyy/${c2}-yyyyyy+
|
|
||||||
${c1} .oyyyyyyo. :yyyyyy/${c2}-yyyyyy+ ---------
|
|
||||||
${c1} .syyyyyy+` :yyyyyy/${c2}-yyyyy+-+syyyyyyyy
|
|
||||||
${c1} -syyyyyy/ :yyyyyy/${c2}-yyys:.syyyyyyyyyy
|
|
||||||
${c1}:syyyyyy/ :yyyyyy/${c2}-yyo.:syyyyyyyyyyy
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
asahi = AsciiArt(match=r'''"Asahi"*''', color='3 2 1 8 7 6 4', ascii=r"""
|
|
||||||
${c1} ## ${c2}**
|
|
||||||
${c1}*####${c2}****.
|
|
||||||
${c1}###${c2},
|
|
||||||
${c3}...,${c1}/#${c3},,,..
|
|
||||||
${c3}/*,,,,,,,,${c1}*${c3},........${c4},,
|
|
||||||
${c3},((((((//*,,,,,,,,${c4},......
|
|
||||||
${c3}((((((((((((((${c5}%..${c4}..........
|
|
||||||
${c3},(((((((((((((((${c5}@@(${c4}............
|
|
||||||
${c3}(((((((((((((((((${c5}@@@@/${c4}............
|
|
||||||
${c3},((((((((((((((((((${c5}@@@@@&*${c4}...........
|
|
||||||
${c3}((((((((((((((((((((${c5}@@@@@@@&${c4},...........
|
|
||||||
${c3}(((((((((((((((((((((${c5}@@@${c6}&%&${c5}@@@%${c4},..........
|
|
||||||
${c3}/(((((((((((((((((((${c5}@@@${c6}&%%&${c5}@@@@(${c4}........
|
|
||||||
${c3},((((((((((((((((${c5}@@@${c6}&&${c5}@@&/&@@@/${c4}..
|
|
||||||
${c3}/((((((((((((${c5}@@@@@@/${c4}.../&&
|
|
||||||
${c3}.(((((((((${c5}@@@@(${c4}....
|
|
||||||
${c3}/(((((${c5}@@#${c4}...
|
|
||||||
${c3}.((${c4}&,
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
asteroidos = AsciiArt(match=r'''"AsteroidOS"*''', color='160 208 202 214', ascii=r"""
|
|
||||||
${c1} ***
|
|
||||||
${c1} *****
|
|
||||||
${c1} **********
|
|
||||||
${c1} ***************
|
|
||||||
${c1} *///****////****////.
|
|
||||||
${c2} (/////// /////// ///////(
|
|
||||||
${c2} /(((((//* //, //((((((.
|
|
||||||
${c2} ((((((((((( ((( ((((((((
|
|
||||||
${c2} *((((((((((((((((((((((( ((((((((
|
|
||||||
${c3} (((((#(((((((#((((( ((#(((((
|
|
||||||
${c3} (#(#(#####(#(#, ####(#(#
|
|
||||||
${c3} ######### ########
|
|
||||||
${c3} /######## ########
|
|
||||||
${c4} #######%#######
|
|
||||||
${c4} (#%%%%%%%#
|
|
||||||
${c4} %%%%%
|
|
||||||
${c4} %%%
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
astos = AsciiArt(match=r'''"astOS"*''', color='8', ascii=r"""
|
|
||||||
${c1} oQA#$%UMn
|
|
||||||
H 9
|
|
||||||
G #
|
|
||||||
6 %
|
|
||||||
?#M#%KW3"
|
|
||||||
// \\
|
|
||||||
// \\
|
|
||||||
// \\
|
|
||||||
// \\
|
|
||||||
n%@$DK&ML .0O3#@&M_
|
|
||||||
P # 8 W
|
|
||||||
H U G #
|
|
||||||
B N O @
|
|
||||||
C&&#%HNAR 'WS3QMHB"
|
|
||||||
// \\ \\
|
|
||||||
// \\ \\
|
|
||||||
// \\ \\
|
|
||||||
// \\ \\
|
|
||||||
uURF$##Bv nKWB$%ABc aM@3R@D@b
|
|
||||||
8 M @ O # %
|
|
||||||
% & G U @ @
|
|
||||||
& @ # % % #
|
|
||||||
!HGN@MNCf t&$9#%HQr ?@G#6S@QP
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
astra_linux = AsciiArt(match=r'''"Astra Linux"*''', color='160 231', ascii=r"""
|
|
||||||
${c1} AA
|
|
||||||
${c1} AaaA
|
|
||||||
${c1} Aa${c2}/\${c1}aA
|
|
||||||
${c1} Aa${c2}/${c1}aa${c2}\${c1}aA
|
|
||||||
${c1} Aa${c2}/${c1}aAAa${c2}\${c1}aA
|
|
||||||
${c1} aA${c2}/${c1}aaAAaa${c2}\${c1}Aa
|
|
||||||
${c1} aA${c2}/${c1}aaAAAAaa${c2}\${c1}Aa
|
|
||||||
${c1} aaaaaaAAAAa${c2}/${c1}aaAAAAAAaa${c2}\${c1}aAAAAaaaaa
|
|
||||||
${c1} aAAa${c2}-----${c1}aaaaaAAAAAAAAAAaaaaa${c2}-----${c1}aAAa
|
|
||||||
${c1} aAA${c2}\ ${c1}aAAAAAAAAAAAAAAAAAAAAAAa${c2} /${c1}AAa
|
|
||||||
${c1} aAa${c2}\${c1}aAAA${c2}\${c1}AAAA${c2}\${c1}AAAA${c2}\${c1}AAA${c2}\${c1}AAa${c2}/${c1}aAa
|
|
||||||
${c1} aAa${c2}\${c1}aA${c2}\\${c1}AAA${c2}\\${c1}AAA${c2}\\${c1}AA${c2}\\/${c1}aAa
|
|
||||||
${c1} aAA${c2}\${c1}aA${c2}\\${c1}AAA${c2}\\${c1}AAA${c2}\\${c1}Aa${c2}/${c1}AAa
|
|
||||||
${c1} aA${c2}\${c1}aA${c2}\\${c1}AAA${c2}\\${c1}AAA${c2}\\/${c1}Aa
|
|
||||||
${c1} aA${c2}/${c1}AA${c2}\\\${c1}AA${c2}\\\${c1}AA${c2}\\\${c1}Aa
|
|
||||||
${c1} aA${c2}/\${c1}AAa${c2}\\\${c1}Aa${c2}\\\${c1}Aa${c2}\\\${c1}Aa
|
|
||||||
${c1} aA${c2}/\\${c1}AAa${c2}\\/\${c1}a${c2}\\\${c1}Aa${c2}\\${c1}Aa
|
|
||||||
${c1} aA${c2}/${c1}a${c2}\\\${c1}Aa${c2}\/${c1}AA${c2}\\\\\${c1}Aa${c2}\\${c1}Aa
|
|
||||||
${c1} aA${c2}/${c1}aA${c2}\\/${c1}aAa aAa${c2}\\\${c1}Aa${c2}\${c1}Aa
|
|
||||||
${c1} aA${c2}/\${c1}A${c2}\/${c1}Aa aA${c2}\\${c1}A${c2}\\${c1}Aa
|
|
||||||
${c1} A${c2}|/${c1}aaAa aAaa${c2}\|${c1}A
|
|
||||||
${c1} aAaa aaAa
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
athena = AsciiArt(match=r'''"Athena"*''', color='7 3', ascii=r"""
|
|
||||||
${c1} . ..
|
|
||||||
${c1} :####: ####.
|
|
||||||
${c1} .################
|
|
||||||
${c1} :##################
|
|
||||||
${c1}.###################.
|
|
||||||
${c1}######## #######
|
|
||||||
${c1}####### ${c2}####${c1} #####
|
|
||||||
${c1}:#######. ####
|
|
||||||
${c1} ######### ${c2}#${c1} ## #
|
|
||||||
${c1} ####### ${c2}##${c1} ####
|
|
||||||
${c1}######## ${c2}####${c1} #######
|
|
||||||
${c1}######## ${c2}#####${c1} ########
|
|
||||||
${c1}######## ${c2}#######${c1} #######
|
|
||||||
${c1} ####### ${c2}########${c1} #######
|
|
||||||
${c1} ######## ${c2}#########${c1} ######
|
|
||||||
${c1} ######## ${c2}#########${c1} #####
|
|
||||||
${c1} ####### ${c2}#########${c1} ####
|
|
||||||
${c1} ####### ${c2}#########${c1} ##
|
|
||||||
${c1} ####### ${c2}########${c1} ##
|
|
||||||
${c1} ###### ${c2}########${c1} #
|
|
||||||
${c1} ### ${c2}#######${c1}
|
|
||||||
${c1} ${c2}######${c1}
|
|
||||||
${c1} ${c2}####${c1}
|
|
||||||
${c1} ${c2}##${c1}
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
azos = AsciiArt(match=r'''"azos"*''', color='6 1', ascii=r"""
|
|
||||||
${c1} ////. ${c2} (((((
|
|
||||||
${c1} //////// ${c2} @((((((((
|
|
||||||
${c1} //////// ${c2} @((((((((
|
|
||||||
${c1} //////// /////// ${c2} ((((((( @((((((((
|
|
||||||
${c1} //////// ///////// ${c2} ((((((((( @((((((((
|
|
||||||
${c1} //////// ///////// ${c2} ((((((((( @((((((((
|
|
||||||
${c1} //////// ///////// ////// ${c2} (((((( ((((((((( @((((((((
|
|
||||||
${c1} //////// ///////// //////// ${c2} (((((((( ((((((((( @((((((((
|
|
||||||
${c1} //////// ///////// //////// ${c2} (((((((( ((((((((( @((((((((
|
|
||||||
${c1} //////// ///////// //////// ${c2} ((((((( ((((((((( @((((((((
|
|
||||||
${c1} //////// ///////// /// ${c2} ( ((((((((( @((((((((
|
|
||||||
${c1} //////// ///////// ${c2} ((((((((( @((((((((
|
|
||||||
${c1} //////// ///////// ${c2} &(((((((( @((((((((
|
|
||||||
${c1} //////// ////// ${c2} @(((( @((((((((
|
|
||||||
${c1} //////// ${c2} @((((((((
|
|
||||||
${c1} //////// ${c2} @((((((((
|
|
||||||
${c1} ///// ${c2} (((((
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
bazzite = AsciiArt(match=r'''"Bazzite"*''', color='5 5', ascii=r"""
|
|
||||||
${c1} %%%%%%====%%%%%%%%%%
|
|
||||||
%%%%%%%% %%%%%%%%%%%%%%
|
|
||||||
%%%%%%%%% %%%%%%%%%%%%%%%%
|
|
||||||
%%%%%%%%% %%%%%%%%%%%%%%%###
|
|
||||||
%%%%%%%%% %%%%%%%%%%%%%######
|
|
||||||
== =======######
|
|
||||||
== =========#####
|
|
||||||
%%%%%%%%% %%%%%%%####======#####
|
|
||||||
%%%%%%%%% %%%%%#######=====#####
|
|
||||||
%%%%%%%%% %%%#########=====#####
|
|
||||||
%%%%%%%%% %%##########=====#####
|
|
||||||
%%%%%%%%%====###########=====######
|
|
||||||
%%%%%%%%====#########======######
|
|
||||||
%%%%%%%=====#####========######
|
|
||||||
%%%%###===============#######
|
|
||||||
%#######==========#########
|
|
||||||
#######################
|
|
||||||
###################
|
|
||||||
###########
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
bedrock = AsciiArt(match=r'''"Bedrock"*''', color='8 7', ascii=r"""
|
|
||||||
${c1}--------------------------------------
|
|
||||||
--------------------------------------
|
|
||||||
--------------------------------------
|
|
||||||
---${c2}\\\\\\\\\\\\${c1}-----------------------
|
|
||||||
----${c2}\\\ \\\${c1}----------------------
|
|
||||||
-----${c2}\\\ \\\${c1}---------------------
|
|
||||||
------${c2}\\\ \\\\\\\\\\\\\\\\\${c1}------
|
|
||||||
-------${c2}\\\ \\\${c1}-----
|
|
||||||
--------${c2}\\\ \\\${c1}----
|
|
||||||
---------${c2}\\\ ______ \\\${c1}---
|
|
||||||
----------${c2}\\\ ///${c1}---
|
|
||||||
-----------${c2}\\\ ///${c1}----
|
|
||||||
------------${c2}\\\ ///${c1}-----
|
|
||||||
-------------${c2}\\\////////////////${c1}------
|
|
||||||
--------------------------------------
|
|
||||||
--------------------------------------
|
|
||||||
--------------------------------------
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
biglinux = AsciiArt(match=r'''"BigLinux"*''', color='6 11 4', ascii=r"""
|
|
||||||
${c1} ...
|
|
||||||
:OWMMMNd.
|
|
||||||
:NMMMMMMMMWc
|
|
||||||
okkl. kMMMMMW0xdOWMl
|
|
||||||
: xMMMMMW. kMMMMNc lW.
|
|
||||||
:x NMMMMMO ,MMMM0. 'l
|
|
||||||
Xx "lkk" kMMMX .okx,
|
|
||||||
${c2}.MX .cc;. .xXKx. KMMM: .OMMMMMl
|
|
||||||
:MM' 'KMMMMWK: 0MMMMk xMMM. lWMMMMMMM'
|
|
||||||
cMMN:;xMMMMk::MMO oMMMMX .XMM. .KMMMWOOMMMd
|
|
||||||
'MMMMMMMMN, NMMx OMMMMl .kM0OMMMMk. ;MMd
|
|
||||||
xMMMMMMd .MMMW :NMMMd .ckKKx' KMc
|
|
||||||
dWMNd. oMMMN lkNMX, oM.
|
|
||||||
;. ;MMMMx "MM:. cO
|
|
||||||
${c3} .X. oMMMMW. l.
|
|
||||||
dMk:..;xWMMMMW,
|
|
||||||
kMMMMMMMMMMX.
|
|
||||||
:XMMMMMMK:
|
|
||||||
':MM:" Made in Brazil
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
biglinux_large = AsciiArt(match=r'''"BigLinux_large"*''', color='2 3 4 7', ascii=r"""
|
|
||||||
${c4}
|
|
||||||
${c3}.cd0KXXX${c4}0${c3}x;
|
|
||||||
${c3}.oXM${c4}M${c3}MMMMMMMMMWo
|
|
||||||
${c2}... ${c3}dWMMMM${c4}M${c3}MMMMMMMMMMN,
|
|
||||||
${c2}c0WMMMW0: ${c3}.XMMMM${c4}M${c3}MMMKdc;,;cxNMM:
|
|
||||||
${c1}x, ${c2}.XMMMMMMMMM: ${c3}'W${c3}MMMMMMWo. ;KW.
|
|
||||||
${c1}dM. ${c2}.WMMMMMMMM0 ${c3}N${c3}MMMM${c4}M${c3}Mk. dd
|
|
||||||
${c1}.MM. ${c2}.lOKXKOl. ${c3}oMMMMMMd .l${c4}x${c3}kd: .
|
|
||||||
${c1}kMM: .'.. ${c2}:xOOxc. ${c3}O${c4}M${c3}MMMM0 lXMMMMM${c4}M${c3}N;
|
|
||||||
${c1}WMM0 lKMMMMMW0o. ${c2}KMMMMMMN. ${c3}xMM${c4}M${c3}M, .dWMMMMMMMMMM;
|
|
||||||
${c1}.MMMMx .oWMMMMMMOl0MMX; ${c2}NMMMMMMM; ${c3}.NMMMM. .dWMMMM${c4}M${c3}MMMMMMMN
|
|
||||||
${c1}.MMMMMNOKMMMMMMMk. 'MMMMx ${c2};MMMMMMMO ${c3}.KMMMl .oWMMMMMWk:,lWMMMM.
|
|
||||||
${c1}xMMMMMMMMMMMMk. .MMMMMc ${c2}'XMMMMMMx ${c3}:0MMNMMMM${c4}M${c3}MWx. .WM${c4}M${c3}M.
|
|
||||||
${c1}0MMMMMMMMWx. :MMMMMK ${c2}cKMMMMMX: ${c3},ok0K0x:. oMMN
|
|
||||||
${c1}oNMMMM0c. .NMMMMMO ${c2}.lOWMMMX: ${c3}.M${c4}M${c3}o
|
|
||||||
${c1}c. .'. .KMMMMMM: ${c2}.';clc. ${c3}MN
|
|
||||||
${c1}:N; cWMMMMMMO ${c3}.W;
|
|
||||||
${c1}0M0: 'dNMMMMMMM0 ${c3}',
|
|
||||||
${c1}0MMMX0O0XMMMMMMMMMMo
|
|
||||||
${c1}oWMMMMMMMMMMMMMMk.
|
|
||||||
${c1}.oXMMMMMMMMW0c.
|
|
||||||
${c1}.;ccc:,.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
bitrig = AsciiArt(match=r'''"Bitrig"*''', color='2 7', ascii=r"""
|
|
||||||
${c1} `hMMMMN+
|
|
||||||
-MMo-dMd`
|
|
||||||
oMN- oMN`
|
|
||||||
yMd /NM:
|
|
||||||
.mMmyyhMMs
|
|
||||||
:NMMMhsmMh
|
|
||||||
+MNhNNoyMm-
|
|
||||||
hMd.-hMNMN:
|
|
||||||
mMmsssmMMMo
|
|
||||||
.MMdyyhNMMMd
|
|
||||||
oMN.`/dMddMN`
|
|
||||||
yMm/hNm+./MM/
|
|
||||||
.dMMMmo.``.NMo
|
|
||||||
:NMMMNmmmmmMMh
|
|
||||||
/MN/-------oNN:
|
|
||||||
hMd. .dMh
|
|
||||||
sm/ /ms
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
blackarch = AsciiArt(match=r'''"BlackArch"*''', color='1 1 0 1', ascii=r"""
|
|
||||||
${c3} 00
|
|
||||||
11
|
|
||||||
====${c1}
|
|
||||||
.${c3}//${c1}
|
|
||||||
`o${c3}//${c1}:
|
|
||||||
`+o${c3}//${c1}o:
|
|
||||||
`+oo${c3}//${c1}oo:
|
|
||||||
-+oo${c3}//${c1}oo+:
|
|
||||||
`/:-:+${c3}//${c1}ooo+:
|
|
||||||
`/+++++${c3}//${c1}+++++:
|
|
||||||
`/++++++${c3}//${c1}++++++:
|
|
||||||
`/+++o${c2}ooo${c3}//${c2}ooo${c1}oooo/`
|
|
||||||
${c2} ${c1}./${c2}ooosssso${c3}//${c2}osssssso${c1}+`
|
|
||||||
${c2} .oossssso-`${c3}//${c1}`/ossssss+`
|
|
||||||
-osssssso. ${c3}//${c1} :ssssssso.
|
|
||||||
:osssssss/ ${c3}//${c1} osssso+++.
|
|
||||||
/ossssssss/ ${c3}//${c1} +ssssooo/-
|
|
||||||
`/ossssso+/:- ${c3}//${c1} -:/+osssso+-
|
|
||||||
`+sso+:-` ${c3}//${c1} `.-/+oso:
|
|
||||||
`++:. ${c3}//${c1} `-/+/
|
|
||||||
.` ${c3}/${c1} `/
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
blackmesa = AsciiArt(match=r'''"BlackMesa"''', color='1', ascii=r"""
|
|
||||||
${c1}
|
|
||||||
.-;+$XHHHHHHX$+;-.
|
|
||||||
,;X@@X%/;=----=:/%X@@X/,
|
|
||||||
=$@@%=. .=+H@X:
|
|
||||||
-XMX: =XMX=
|
|
||||||
/@@: =H@+
|
|
||||||
%@X, .$@$
|
|
||||||
+@X. $@%
|
|
||||||
-@@, .@@=
|
|
||||||
%@% +@$
|
|
||||||
H@: :@H
|
|
||||||
H@: :HHHHHHHHHHHHHHHHHHX, =@H
|
|
||||||
%@% ;@M@@@@@@@@@@@@@@@@@H- +@$
|
|
||||||
=@@, :@@@@@@@@@@@@@@@@@@@@@= .@@:
|
|
||||||
+@X :@@@@@@@@@@@@@@@M@@@@@@:%@%
|
|
||||||
$@$, ;@@@@@@@@@@@@@@@@@M@@@@@@$.
|
|
||||||
+@@HHHHHHH@@@@@@@@@@@@@@@@@@@@@@@+
|
|
||||||
=X@@@@@@@@@@@@@@@@@@@@@@@@@@@@X=
|
|
||||||
:$@@@@@@@@@@@@@@@@@@@M@@@@$:
|
|
||||||
,;$@@@@@@@@@@@@@@@@@@X/-
|
|
||||||
.-;+$XXHHHHHX$+;-.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
blackpanther = AsciiArt(match=r'''"blackPanther"* | 'blackpanther'*''', color='1 11 12', ascii=r"""
|
|
||||||
${c3} ........
|
|
||||||
.,»╔╗╗╬▄▄╫█▀▓▄▄╬╗╗g≈,.
|
|
||||||
,j╗╬╣▓▓███████▌;»╙▀▀▀▀█▄▄╗j,
|
|
||||||
.≈╗╬▓██▀▀▀▀▀╠╙░░»»;:`${c2}``>${c1}▄ ${c3}▐ ▓╫╗⌂,
|
|
||||||
.j╬▓█▀▒░░░░░░░░░»»»;:```` ╙▀█▌╬░,
|
|
||||||
;╗▓█▄▄███████▀░░»»»»;```` ╓▄▄█▄▄φ ██▌Ñ>.
|
|
||||||
.j╣█████▀▀░░░░░░░░»»╓▄▄¿``▄███████/▄████▓╬U.
|
|
||||||
.j╣▓██▀ÜÑ╦╦░░░░░░▐█@▄████⌐▐███████████████▓╬H.
|
|
||||||
«╫▓█▀░ÑÑ╩╦░░░░░░░░▀██████M"▀███████████████▓╫░
|
|
||||||
:]╣█▌ÑÑÑÑ▄▄██▀░░░░»»██████████████████████████Ñ~
|
|
||||||
»╫▓█╫ÑÑ▄███▀░░░░░»»▐██████████████████████████▌░
|
|
||||||
`j╣█▌Ñ╬████░░░░░░░»»▐████████████████████████▌▐█U`
|
|
||||||
`/╫█▌▄███▌░░░░░░░»»»;▀██████████████▀████████w▐█░`
|
|
||||||
;╟█▌███▌░░░░░░░▄▄»»;:`▀▀████████▀Ü▄████████▌ ▐▌>`
|
|
||||||
`]▓████░░░░░░░░██⌂;:````╓▄▄µp╓▄▄██████████▀ ,█M`
|
|
||||||
"╠╣██▌░░░░░░░»██▌;```` ╙▀██████████████M █▀"
|
|
||||||
"╟╣█░░░░░░░░»███⌂``` ▐▀████████▀░ █▌░`
|
|
||||||
"╩█▄░░░░░░»»▀███ `` └└` ,█▀"`
|
|
||||||
`░▀█▄░░░»»»»████@ .▄█Ü`
|
|
||||||
`╙▀█▄@»»»;`▀███▌¿ ,▄▀Ñ"`
|
|
||||||
`"╨▀█▄▄▄░`▐█████▄, ,▄▄▀▀░`
|
|
||||||
`"╙╩▀▀▀▀████████▓▌▌▌▀▀▀╨"``
|
|
||||||
``""░╚╨╝╝╝╝╨╨░""``
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
blag = AsciiArt(match=r'''"BLAG"*''', color='5 7', ascii=r"""
|
|
||||||
${c1} d
|
|
||||||
,MK:
|
|
||||||
xMMMX:
|
|
||||||
.NMMMMMX;
|
|
||||||
lMMMMMMMM0clodkO0KXWW:
|
|
||||||
KMMMMMMMMMMMMMMMMMMX'
|
|
||||||
.;d0NMMMMMMMMMMMMMMMMMMK.
|
|
||||||
.;dONMMMMMMMMMMMMMMMMMMMMMMx
|
|
||||||
'dKMMMMMMMMMMMMMMMMMMMMMMMMl
|
|
||||||
.:xKWMMMMMMMMMMMMMMMMMMM0.
|
|
||||||
.:xNMMMMMMMMMMMMMMMMMK.
|
|
||||||
lMMMMMMMMMMMMMMMMMMK.
|
|
||||||
,MMMMMMMMWkOXWMMMMMM0
|
|
||||||
.NMMMMMNd. `':ldko
|
|
||||||
OMMMK:
|
|
||||||
oWk,
|
|
||||||
;:
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
blankon = AsciiArt(match=r'''"BlankOn"*''', color='1 7 3', ascii=r"""
|
|
||||||
${c2} `./ohdNMMMMNmho+.` ${c1} .+oo:`
|
|
||||||
${c2} -smMMMMMMMMMMMMMMMMmy-` ${c1}`yyyyy+
|
|
||||||
${c2} `:dMMMMMMMMMMMMMMMMMMMMMMd/` ${c1}`yyyyys
|
|
||||||
${c2} .hMMMMMMMNmhso/++symNMMMMMMMh- ${c1}`yyyyys
|
|
||||||
${c2} -mMMMMMMms-` -omMMMMMMN-${c1}.yyyyys
|
|
||||||
${c2}.mMMMMMMy. .yMMMMMMm:${c1}yyyyys
|
|
||||||
${c2}sMMMMMMy `sMMMMMMh${c1}yyyyys
|
|
||||||
${c2}NMMMMMN: .NMMMMMN${c1}yyyyys
|
|
||||||
${c2}MMMMMMm. NMMMMMN${c1}yyyyys
|
|
||||||
${c2}hMMMMMM+ /MMMMMMN${c1}yyyyys
|
|
||||||
${c2}:NMMMMMN: :mMMMMMM+${c1}yyyyys
|
|
||||||
${c2} oMMMMMMNs- .sNMMMMMMs.${c1}yyyyys
|
|
||||||
${c2} +MMMMMMMNho:.` `.:ohNMMMMMMNo ${c1}`yyyyys
|
|
||||||
${c2} -hMMMMMMMMNNNmmNNNMMMMMMMMh- ${c1}`yyyyys
|
|
||||||
${c2} :yNMMMMMMMMMMMMMMMMMMNy:` ${c1}`yyyyys
|
|
||||||
${c2} .:sdNMMMMMMMMMMNds/. ${c1}`yyyyyo
|
|
||||||
${c2} `.:/++++/:.` ${c1}:oys+.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
bluelight = AsciiArt(match=r'''"BlueLight"*''', color='7 4', ascii=r"""
|
|
||||||
${c1} oMMNMMMMMMMMMMMMMMMMMMMMMM
|
|
||||||
oMMMMMMMMMMMMMMMMMMMMMMMMM
|
|
||||||
oMMMMMMMMMMMMMMMMMMMMMMMMM
|
|
||||||
oMMMMMMMMMMMMMMMMMMMMMMMMM
|
|
||||||
-+++++++++++++++++++++++mM${c2}
|
|
||||||
```````````````````````..${c1}dM${c2}
|
|
||||||
```````````````````````....${c1}dM${c2}
|
|
||||||
```````````````````````......${c1}dM${c2}
|
|
||||||
```````````````````````........${c1}dM${c2}
|
|
||||||
```````````````````````..........${c1}dM${c2}
|
|
||||||
```````````````````````............${c1}dM${c2}
|
|
||||||
.::::::::::::::::::::::-..............${c1}dM${c2}
|
|
||||||
`-+yyyyyyyyyyyyyyyyyyyo............${c1}+mMM${c2}
|
|
||||||
-+yyyyyyyyyyyyyyyyo..........${c1}+mMMMM${c2}
|
|
||||||
./syyyyyyyyyyyyo........${c1}+mMMMMMM${c2}
|
|
||||||
./oyyyyyyyyyo......${c1}+mMMMMMMMM${c2}
|
|
||||||
omdyyyyyyo....${c1}+mMMMMMMMMMM${c2}
|
|
||||||
${c1}oMMM${c2}mdhyyo..${c1}+mMMMMMMMMMMMM
|
|
||||||
oNNNNNNm${c2}dso${c1}mMMMMMMMMMMMMMM
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
bodhi = AsciiArt(match=r'''"Bodhi"*''', color='7 11 2', ascii=r"""
|
|
||||||
${c1}| ${c2},,mmKKKKKKKKWm,,
|
|
||||||
${c1}' ${c2},aKKP${c1}LL**********|L*${c2}TKp,
|
|
||||||
${c1}t ${c2}aKP${c1}L**``` ```**L${c2}*Kp
|
|
||||||
IX${c1}EL${c3}L,wwww, ${c1}``*||${c2}Kp
|
|
||||||
,#P${c1}L|${c3}KKKpPP@IPPTKmw, ${c1}`*||${c2}K
|
|
||||||
,K${c1}LL*${c3}{KKKKKKPPb$KPhpKKPKp ${c1}`||${c2}K
|
|
||||||
#${c1}PL ${c3}!KKKKKKPhKPPP$KKEhKKKKp ${c1}`||${c2}K
|
|
||||||
!H${c1}L* ${c3}1KKKKKKKphKbPKKKKKK$KKp ${c1}`|I${c2}W
|
|
||||||
$${c1}bL ${c3}KKKKKKKKBQKhKbKKKKKKKK ${c1}|I${c2}N
|
|
||||||
$${c1}bL ${c3}!KKKKKKKKKKNKKKKKKKPP` ${c1}|I${c2}b
|
|
||||||
TH${c1}L* ${c3}TKKKKKK##KKKN@KKKK^ ${c1}|I${c2}M
|
|
||||||
K@${c1}L ${c3}*KKKKKKKKKKKEKE5 ${c1}||${c2}K
|
|
||||||
`NL${c1}L ${c3}`KKKKKKKKKK"```|L ${c1}||${c2}#P
|
|
||||||
`K@${c1}LL ${c3}`"**"` ${c1}'. :||${c2}#P
|
|
||||||
Yp${c1}LL ${c1}' |L${c2}$M`
|
|
||||||
`Tp${c1}pLL, ,|||${c2}p'L
|
|
||||||
"Kpp${c1}LL++,., ,,|||$${c2}#K* ${c1}'.
|
|
||||||
${c2}`"MKWpppppppp#KM"` ${c1}`h,
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
bonsai = AsciiArt(match=r'''"bonsai"*''', color='6 2 3', ascii=r"""
|
|
||||||
${c2} ,####,
|
|
||||||
${c2}#######, ${c2},#####,
|
|
||||||
${c2}#####',# ${c2}'######
|
|
||||||
${c2}''###'${c3}';,,,'${c2}###'
|
|
||||||
${c3} ,; ''''
|
|
||||||
${c3} ;;; ${c2},#####,
|
|
||||||
${c3} ;;;' ,,;${c2};;###
|
|
||||||
${c3} ';;;;''${c2}'####'
|
|
||||||
${c3} ;;;
|
|
||||||
${c3} ,.;;';'',,,
|
|
||||||
${c3} ' '
|
|
||||||
${c1} #
|
|
||||||
# O
|
|
||||||
##, ,##,',##, ,## ,#, ,
|
|
||||||
# # # # #''# #,, # # #
|
|
||||||
'#' '##' # # ,,# '##;, #
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
bsd = AsciiArt(match=r'''*"BSD"''', color='1 7 4 3 6', ascii=r"""
|
|
||||||
${c1} , ,
|
|
||||||
/( )`
|
|
||||||
\ \___ / |
|
|
||||||
/- _ `-/ '
|
|
||||||
(${c2}/\/ \ ${c1}\ /\
|
|
||||||
${c2}/ / | ` ${c1}\
|
|
||||||
${c3}O O ${c2}) ${c1}/ |
|
|
||||||
${c2}`-^--'${c1}`< '
|
|
||||||
(_.) _ ) /
|
|
||||||
`.___/` /
|
|
||||||
`-----' /
|
|
||||||
${c4}<----. __ / __ \
|
|
||||||
${c4}<----|====${c1}O)))${c4}==${c1}) \) /${c4}====|
|
|
||||||
<----' ${c1}`--' `.__,' \
|
|
||||||
| |
|
|
||||||
\ / /\
|
|
||||||
${c5}______${c1}( (_ / \______/
|
|
||||||
${c5},' ,-----' |
|
|
||||||
`--{__________)
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
bunsenlabs = AsciiArt(match=r'''"BunsenLabs"*''', color='fg 7', ascii=r"""
|
|
||||||
${c1} `++
|
|
||||||
-yMMs
|
|
||||||
`yMMMMN`
|
|
||||||
-NMMMMMMm.
|
|
||||||
:MMMMMMMMMN-
|
|
||||||
.NMMMMMMMMMMM/
|
|
||||||
yMMMMMMMMMMMMM/
|
|
||||||
`MMMMMMNMMMMMMMN.
|
|
||||||
-MMMMN+ /mMMMMMMy
|
|
||||||
-MMMm` `dMMMMMM
|
|
||||||
`MMN. .NMMMMM.
|
|
||||||
hMy yMMMMM`
|
|
||||||
-Mo +MMMMN
|
|
||||||
/o +MMMMs
|
|
||||||
+MMMN`
|
|
||||||
hMMM:
|
|
||||||
`NMM/
|
|
||||||
+MN:
|
|
||||||
mh.
|
|
||||||
-/
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cachyos = AsciiArt(match=r'''"CachyOS"*''', color='2 8 6', ascii=r"""
|
|
||||||
${c3} ${c2}.${c3}-------------------------:
|
|
||||||
${c3} .${c1}+=${c3}========================.
|
|
||||||
${c3} :${c1}++${c3}===${c1}++===${c3}===============- :${c1}++${c3}-
|
|
||||||
${c3} :${c1}*++${c3}====${c1}+++++==${c3}===========- .==:
|
|
||||||
${c3} -${c1}*+++${c3}=====${c1}+***++=${c3}=========:
|
|
||||||
${c3} =${c1}*++++=${c3}=======------------:
|
|
||||||
${c3} =${c1}*+++++=${c3}====- ${c2}...${c3}
|
|
||||||
${c3} .${c1}+*+++++${c3}=-===: .${c1}=+++=${c3}:
|
|
||||||
${c3} :${c1}++++${c3}=====-==: -***${c1}**${c3}+
|
|
||||||
${c3} :${c1}++=${c3}=======-=. .=+**+${c2}.${c3}
|
|
||||||
${c3}.${c1}+${c3}==========-. ${c2}.${c3}
|
|
||||||
${c3} :${c1}+++++++${c3}====- ${c2}.${c3}--==-${c2}.${c3}
|
|
||||||
${c3} :${c1}++${c3}==========. ${c2}:${c1}+++++++${c3}${c2}:
|
|
||||||
${c3} .-===========. =*****+*+
|
|
||||||
${c3} .-===========: .+*****+:
|
|
||||||
${c3} -=======${c1}++++${c3}:::::::::::::::::::::::::-: ${c2}.${c3}---:
|
|
||||||
${c3} :======${c1}++++${c3}====${c1}+++******************=.
|
|
||||||
${c3} :=====${c1}+++${c3}==========${c1}++++++++++++++*-
|
|
||||||
${c3} .====${c1}++${c3}==============${c1}++++++++++*-
|
|
||||||
${c3} .===${c1}+${c3}==================${c1}+++++++:
|
|
||||||
${c3} .-=======================${c1}+++:
|
|
||||||
${c3} ${c2}..........................
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
calculate = AsciiArt(match=r'''"Calculate"*''', color='7 3', ascii=r"""
|
|
||||||
${c1} ......
|
|
||||||
,,+++++++,.
|
|
||||||
.,,,....,,,${c2}+**+,,.${c1}
|
|
||||||
............,${c2}++++,,,${c1}
|
|
||||||
...............
|
|
||||||
......,,,........
|
|
||||||
.....+*#####+,,,*+.
|
|
||||||
.....,*###############,..,,,,,,..
|
|
||||||
......,*#################*..,,,,,..,,,..
|
|
||||||
.,,....*####################+***+,,,,...,++,
|
|
||||||
.,,..,..*#####################*,
|
|
||||||
,+,.+*..*#######################.
|
|
||||||
,+,,+*+..,########################*
|
|
||||||
.,++++++. ..+##**###################+
|
|
||||||
..... ..+##***#################*.
|
|
||||||
.,.*#*****##############*.
|
|
||||||
..,,*********#####****+.
|
|
||||||
${c2}.,++*****+++${c1}*****************${c2}+++++,.${c1}
|
|
||||||
${c2},++++++**+++++${c1}***********${c2}+++++++++,${c1}
|
|
||||||
${c2}.,,,,++++,.. .,,,,,.....,+++,.,,${c1}
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
calinixos = AsciiArt(match=r'''"CalinixOS"''', color='4 5 4 4 4 4', ascii=r"""
|
|
||||||
${c2}
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣠⠤⠔⠒⠒⠋⠉⠉⠉⠉⠓⠒⠒⠦⠤⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠤⠒⠉⣁⣠⣤⣶⣶⣿⣿⣿⣿⣿⣿⣿⣿⣶⣶⣤⣄⣈⠙⠲⢤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⠴⠋⢁⣤⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣶⣤⡈⠑⢦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⣠⠞⢁⣠⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡄⠈⠢⡀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⢀⠞⠁⣴⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⠋⠉⠁⠀⠀⠀⠀⠈⠉⠙⠛⠿⣿⣿⣿⣿⣿⣿⠏⠀⠀⠀⠈⢢⡀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⡰⠃⣠⣾⣿⣿⣿⣿⣿⣿⡿⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠻⢿⡿⠁⠀⠀⠀⠀⠀⠀⠙⣄⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⡼⠁⣴⣿⣿⣿⣿⣿⣿⡿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢆⠀⠀⠀
|
|
||||||
⠀⠀⡼⠀⣼⣿⣿⣿⣿⣿⣿⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣆⠀⠀
|
|
||||||
⠀⣰⠁⣸⣿⣿⣿⣿⣿⣿⠃⠀⠀⠀⠀⠀⠀⠉⠻⣿⣿⣿⣿⣿⣿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀
|
|
||||||
⢀⡇⢠⣿⣿⣿⣿⣿⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠛⢿⣿⣿⣿⣿⣿⣷⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢳⠀
|
|
||||||
⢸⠀⣸⣿⣿⣿⣿⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣿⣿⣿⣿⣿⣿⣦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄
|
|
||||||
⣼⠀⣿⣿⣿⣿⣿⣿⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣿⣿⣿⣿⣷⣤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
|
||||||
⡇⠀⣿⣿⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢛⣿⣿⣿⣿⣿⣿⣿⡦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
|
||||||
⢻⠀⣿⣿⣿⣿⣿⣿⡆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣶⣿⣿⣿⣿⣿⣿⡿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡇
|
|
||||||
⢸⡀⢹⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣾⣿⣿⣿⣿⣿⣿⠟⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃
|
|
||||||
⠀⣇⠘⣿⣿⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣴⣿⣿⣿⣿⣿⣿⡿⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡼⠀
|
|
||||||
⠀⠸⡄⢹⣿⣿⣿⣿⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀⣠⣶⣿⣿⣿⣿⣿⣿⠟⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⠃⠀
|
|
||||||
⠀⠀⢳⡀⢻⣿⣿⣿⣿⣿⣿⣆⠀⠀⠀⠀⠀⠈⠉⠉⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠏⠀⠀
|
|
||||||
⠀⠀⠀⠳⡀⠻⣿⣿⣿⣿⣿⣿⣷⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣷⣄⡀⠀⠀⠀⠀⢠⠏⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠙⣄⠙⢿⣿⣿⣿⣿⣿⣿⣷⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣴⣾⣿⣿⣿⣿⣿⣦⡀⠀⡰⠃⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠈⠢⡈⠻⣿⣿⣿⣿⣿⣿⣿⣿⣷⣶⣤⣄⣀⡀⠀⠀⠀⠀⢀⣀⣠⣤⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟⣠⠞⠁⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠈⠢⡈⠙⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠋⣡⠞⠁⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠓⢤⡈⠛⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⣁⠴⠊⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠢⢄⣉⠙⠛⠿⠿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠿⠛⠋⣉⡤⠖⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠓⠒⠢⠤⠤⠤⠤⠤⠤⠤⠤⠖⠒⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
calinixos_small = AsciiArt(match=r'''"CalinixOS_small"*''', color='4 5 4 4 4 4', ascii=r"""
|
|
||||||
${c2}
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠀⣀⠤⠐⣂⣈⣩⣭⣭⣍⣀⣐⠀⠄⡀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⡀⠔⣨⣴⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣦⣅⠢⡀⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠠⢊⣴⣾⣿⣿⣿⣿⠿⠟⠛⠛⠛⠛⠻⠿⣿⣿⣿⣿⠃⠀⠠⡀⠀⠀⠀
|
|
||||||
⠀⠀⡐⢡⣾⣿⣿⣿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠛⠁⠀⠀⠀⠈⢆⠀⠀
|
|
||||||
⠀⡘⢰⣿⣿⣿⡟⠁⠀⠀⢀⣀⣀⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢂⠀
|
|
||||||
⢠⢠⣿⣿⣿⡟⠀⠀⠀⠀⠀⠙⠿⣿⣿⣷⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⡀
|
|
||||||
⡄⢸⣿⣿⣿⠁⠀⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣿⣦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠁
|
|
||||||
⡇⣿⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣹⣿⣿⣿⣷⠄⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
⠃⢸⣿⣿⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣿⣿⡿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⡀
|
|
||||||
⠘⡘⣿⣿⣿⣧⠀⠀⠀⠀⠀⢀⣴⣿⣿⣿⠿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠁
|
|
||||||
⠀⠡⠸⣿⣿⣿⣧⡀⠀⠀⠀⠉⠉⠉⠉⠁⠀⠀⠀⠀⠀⠀⢀⠀⠀⠀⠀⢀⠆⠀
|
|
||||||
⠀⠀⠡⡘⢿⣿⣿⣿⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣴⣿⣷⣦⡀⢀⠊⠀⠀
|
|
||||||
⠀⠀⠀⠈⠊⡻⢿⣿⣿⣿⣿⣶⣤⣤⣤⣤⣤⣤⣶⣿⣿⣿⣿⡿⢟⠕⠁⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠈⠢⢙⠻⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡿⠟⡩⠐⠁⠀⠀⠀⠀⠀
|
|
||||||
⠀⠀⠀⠀⠀⠀⠀⠀⠈⠐⠂⠭⠉⠙⣛⣛⠋⠉⠭⠐⠂⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
carbs = AsciiArt(match=r'''"Carbs"*''', color='4 5 4 4 4 4', ascii=r"""
|
|
||||||
${c2} ..........
|
|
||||||
..,;:ccccccc:;'..
|
|
||||||
..,clllc:;;;;;:cllc,.
|
|
||||||
.,cllc,... ..';;'.
|
|
||||||
.;lol;.. ..
|
|
||||||
.,lol;.
|
|
||||||
.coo:.
|
|
||||||
.'lol,.
|
|
||||||
.,lol,.
|
|
||||||
.,lol,.
|
|
||||||
'col;.
|
|
||||||
.:ooc'.
|
|
||||||
.'col:.
|
|
||||||
.'cllc'.. .''.
|
|
||||||
..:lolc,'.......',cll,.
|
|
||||||
..;cllllccccclllc;'.
|
|
||||||
...',;;;;;;,,...
|
|
||||||
.....
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cbl_mariner = AsciiArt(match=r'''"CBL-Mariner"*''', color='6', ascii=r"""
|
|
||||||
${c1} .
|
|
||||||
:- .
|
|
||||||
:==. .=:
|
|
||||||
:===: -==:
|
|
||||||
:-===: .====:
|
|
||||||
:-====- -=====:
|
|
||||||
-====== :=======:
|
|
||||||
-======. .=========:
|
|
||||||
-======: -==========.
|
|
||||||
-======- -===========.
|
|
||||||
:======- :===========.
|
|
||||||
:=======. .-==========.
|
|
||||||
:=======: -==========.
|
|
||||||
:=======- :==========.
|
|
||||||
:=======- .-========-
|
|
||||||
:--------. :========-
|
|
||||||
..:::--=========-
|
|
||||||
..::---================-=-
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
celos = AsciiArt(match=r'''"CelOS"*''', color='4 6 0 5', ascii=r"""
|
|
||||||
|
|
||||||
${c4} .,cmmmmmmmmmmmc,.
|
|
||||||
.,cmMMMMMMMMMMMMMMMMMMMMmc.
|
|
||||||
.cMMMMMMMMMMMMMMMMMMMMMMMMMMMmc.
|
|
||||||
.cMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMc.
|
|
||||||
,:MMM ${c3}####################################${c4}
|
|
||||||
cMMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmc.
|
|
||||||
.MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM.
|
|
||||||
.MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMc
|
|
||||||
"******************************MMMMMMMMMMMMMc:
|
|
||||||
${c3}#################################### ${c4}MMMMMMMMMMMMMc
|
|
||||||
"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM:
|
|
||||||
"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM"
|
|
||||||
'MMMMMMMMM*******************************:
|
|
||||||
\"MMMMMM ${c3}#####################################
|
|
||||||
${c4}`:MMMMMMmmmmmmmmmmmmmmmmmmmmmmmmmmmmm;
|
|
||||||
`"MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM"
|
|
||||||
`":MMMMMMMMMMMMMMMMMMMMMMMMM;'
|
|
||||||
`":MMMMMMMMMMMMMMMMMMM:"
|
|
||||||
"************"
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
center = AsciiArt(match=r'''"Center"*''', color='7 7', ascii=r"""
|
|
||||||
${c2} .
|
|
||||||
o,
|
|
||||||
. d, .
|
|
||||||
';' ..d;.. .cl'
|
|
||||||
.:; 'oldO,.oo.
|
|
||||||
..,:,xKXxoo;'.
|
|
||||||
,;;;;;ldxkONMMMXxkxc;;;;;.
|
|
||||||
.....':oddXWMNOxlcl:......
|
|
||||||
.:dlxk0c;:. .
|
|
||||||
:d:.,xcld,.,:.
|
|
||||||
;l, .l; ';'
|
|
||||||
.o;
|
|
||||||
l,
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
centos = AsciiArt(match=r'''"CentOS"*''', color='3 2 4 5 7', ascii=r"""
|
|
||||||
${c1} ..
|
|
||||||
.PLTJ.
|
|
||||||
<><><><>
|
|
||||||
${c2}KKSSV' 4KKK ${c1}LJ${c4} KKKL.'VSSKK
|
|
||||||
${c2}KKV' 4KKKKK ${c1}LJ${c4} KKKKAL 'VKK
|
|
||||||
${c2}V' ' 'VKKKK ${c1}LJ${c4} KKKKV' ' 'V
|
|
||||||
${c2}.4MA.' 'VKK ${c1}LJ${c4} KKV' '.4Mb.
|
|
||||||
${c4} . ${c2}KKKKKA.' 'V ${c1}LJ${c4} V' '.4KKKKK ${c3}.
|
|
||||||
${c4} .4D ${c2}KKKKKKKA.'' ${c1}LJ${c4} ''.4KKKKKKK ${c3}FA.
|
|
||||||
${c4}<QDD ++++++++++++ ${c3}++++++++++++ GFD>
|
|
||||||
${c4} 'VD ${c3}KKKKKKKK'.. ${c2}LJ ${c1}..'KKKKKKKK ${c3}FV
|
|
||||||
${c4} ' ${c3}VKKKKK'. .4 ${c2}LJ ${c1}K. .'KKKKKV ${c3}'
|
|
||||||
${c3} 'VK'. .4KK ${c2}LJ ${c1}KKA. .'KV'
|
|
||||||
${c3}A. . .4KKKK ${c2}LJ ${c1}KKKKA. . .4
|
|
||||||
${c3}KKA. 'KKKKK ${c2}LJ ${c1}KKKKK' .4KK
|
|
||||||
${c3}KKSSA. VKKK ${c2}LJ ${c1}KKKV .4SSKK
|
|
||||||
${c2} <><><><>
|
|
||||||
'MKKM'
|
|
||||||
''
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
centos_small = AsciiArt(match=r'''"centos_small"*''', color='3 2 4 5 7', ascii=r"""
|
|
||||||
${c2} ____${c1}^${c4}____
|
|
||||||
${c2} |\ ${c1}|${c4} /|
|
|
||||||
${c2} | \ ${c1}|${c4} / |
|
|
||||||
${c4}<---- ${c3}---->
|
|
||||||
${c3} | / ${c2}|${c1} \ |
|
|
||||||
${c3} |/__${c2}|${c1}__\|
|
|
||||||
${c2} v
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
chakra = AsciiArt(match=r'''"Chakra"*''', color='4 5 7 6', ascii=r"""
|
|
||||||
${c1} _ _ _ "kkkkkkkk.
|
|
||||||
,kkkkkkkk., 'kkkkkkkkk,
|
|
||||||
,kkkkkkkkkkkk., 'kkkkkkkkk.
|
|
||||||
,kkkkkkkkkkkkkkkk,'kkkkkkkk,
|
|
||||||
,kkkkkkkkkkkkkkkkkkk'kkkkkkk.
|
|
||||||
"''"''',;::,,"''kkk''kkkkk; __
|
|
||||||
,kkkkkkkkkk, "k''kkkkk' ,kkkk
|
|
||||||
,kkkkkkk' ., ' .: 'kkkk',kkkkkk
|
|
||||||
,kkkkkkkk'.k' , ,kkkk;kkkkkkkkk
|
|
||||||
,kkkkkkkk';kk 'k "'k',kkkkkkkkkkkk
|
|
||||||
.kkkkkkkkk.kkkk.'kkkkkkkkkkkkkkkkkk'
|
|
||||||
;kkkkkkkk''kkkkkk;'kkkkkkkkkkkkk''
|
|
||||||
'kkkkkkk; 'kkkkkkkk.,""''"''""
|
|
||||||
''kkkk; 'kkkkkkkkkk.,
|
|
||||||
';' 'kkkkkkkkkkkk.,
|
|
||||||
';kkkkkkkkkk'
|
|
||||||
';kkkkkk'
|
|
||||||
"''"
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
chaletos = AsciiArt(match=r'''"ChaletOS"*''', color='4 7 1', ascii=r"""
|
|
||||||
${c1} `.//+osso+/:``
|
|
||||||
`/sdNNmhyssssydmNNdo:`
|
|
||||||
:hNmy+-` .-+hNNs-
|
|
||||||
/mMh/` `+:` `+dMd:
|
|
||||||
.hMd- -sNNMNo. /yyy /mMs`
|
|
||||||
-NM+ `/dMd/--omNh::dMM `yMd`
|
|
||||||
.NN+ .sNNs:/dMNy:/hNmo/s yMd`
|
|
||||||
hMs `/hNd+-smMMMMMMd+:omNy- `dMo
|
|
||||||
:NM. .omMy:/hNMMMMMMMMMMNy:/hMd+` :Md`
|
|
||||||
/Md` `sm+.omMMMMMMMMMMMMMMMMd/-sm+ .MN:
|
|
||||||
/Md` MMMMMMMMMMMMMMMMMMMN .MN:
|
|
||||||
:NN. MMMMMMm....--NMMMMMN -Mm.
|
|
||||||
`dMo MMMMMMd mMMMMMN hMs
|
|
||||||
-MN: MMMMMMd mMMMMMN oMm`
|
|
||||||
:NM: MMMMMMd mMMMMMN +Mm-
|
|
||||||
-mMy. mmmmmmh dmmmmmh -hMh.
|
|
||||||
oNNs- :yMm/
|
|
||||||
.+mMdo:` `:smMd/`
|
|
||||||
-ohNNmhsoo++osshmNNh+.
|
|
||||||
`./+syyhhyys+:``
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
chapeau = AsciiArt(match=r'''"Chapeau"*''', color='2 7', ascii=r"""
|
|
||||||
${c1} .-/-.
|
|
||||||
////////.
|
|
||||||
////////${c2}y+${c1}//.
|
|
||||||
////////${c2}mMN${c1}/////.
|
|
||||||
////////${c2}mMN+${c1}////////.
|
|
||||||
////////////////////////.
|
|
||||||
/////////+${c2}shhddhyo${c1}+////////.
|
|
||||||
////////${c2}ymMNmdhhdmNNdo${c1}///////.
|
|
||||||
///////+${c2}mMms${c1}////////${c2}hNMh${c1}///////.
|
|
||||||
///////${c2}NMm+${c1}//////////${c2}sMMh${c1}///////
|
|
||||||
//////${c2}oMMNmmmmmmmmmmmmMMm${c1}///////
|
|
||||||
//////${c2}+MMmssssssssssssss+${c1}///////
|
|
||||||
`//////${c2}yMMy${c1}////////////////////
|
|
||||||
`//////${c2}smMNhso++oydNm${c1}////////
|
|
||||||
`///////${c2}ohmNMMMNNdy+${c1}///////
|
|
||||||
`//////////${c2}++${c1}//////////
|
|
||||||
`////////////////.
|
|
||||||
-////////-
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
chimera = AsciiArt(match=r'''"Chimera"*''', color='1 5 4 1', ascii=r"""
|
|
||||||
${c3}ddddddddddddddc ${c1},cc:
|
|
||||||
${c3}ddddddddddddddc ${c1},cc:
|
|
||||||
${c3}ddddddddddddddd ${c1},cc:
|
|
||||||
${c3}ddddddddddddl:' ${c1},cc:
|
|
||||||
${c3}dddddddddl' ${c1}..;cc:
|
|
||||||
${c3}dddddddo. ${c1},:cccccc:
|
|
||||||
${c3}ddddddl ${c1},ccc:'''''
|
|
||||||
${c3}dddddo. ${c1};ccc. ............
|
|
||||||
.ccc. cccccccccccc
|
|
||||||
${c2}...... ${c1}.ccc. .ccc'''''''''
|
|
||||||
${c2}OOOOOk. ${c1};ccc. .ccc; ......
|
|
||||||
${c2}OOOOOOd ${c1}'ccc:,....,:ccc' ${c4}coooooo
|
|
||||||
${c2}OOOOOOOx. ${c1}':cccccccc:' ${c4}.looooooo
|
|
||||||
${c2}OOOOOOOOOd, ${c1}`'''` ${c4}.coooooooo
|
|
||||||
${c2}OOOOOOOOOOOOdc,. ${c4}..,coooooooooooo
|
|
||||||
${c2}OOOOOOOOOOOOOOOO' ${c4}.oooooooooooooooo
|
|
||||||
${c2}OOOOOOOOOOOOOOOO' ${c4}.oooooooooooooooo
|
|
||||||
${c2}OOOOOOOOOOOOOOOO' ${c4}.oooooooooooooooo
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
chonkysealos = AsciiArt(match=r'''"ChonkySealOS"*''', color='7', ascii=r"""
|
|
||||||
${c1} .-/-.
|
|
||||||
.:-=++****++=-:.
|
|
||||||
.:=+*##%%%%%%%%%%##*+=:.
|
|
||||||
:=*#%%%%%%%%%%%%%%%%%%%%#*=:
|
|
||||||
:=*#%%%%%%%%%%%%%%%%%%%%%%%%#*=.
|
|
||||||
-+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%#+-
|
|
||||||
=+#%%%%@@@@@@@%%%%%%%@@@@@@@%%%%%#+=
|
|
||||||
=+#@%%%%*+=-==*%%%%%%%#+====*%%%%%@#+=
|
|
||||||
:+*%%%%@* +@%%%@# -@%%%%%*+:
|
|
||||||
=+#%%%%%%#+====*###%%##*=--=+*%%%%%%%#+=
|
|
||||||
+*%%%%%%%@@##%%%%*=::=#%%%##%@%%%%%%%%*+
|
|
||||||
+*%%%%%%%@**@%%%%%@==@%%%%%@+#%%%%%%%%*+
|
|
||||||
=+#%%%%%%@#*@%%%%%%**%%%%%@%+%%%%%%%%#+=
|
|
||||||
:+*%%%%%%%@#*####**###*####*%@%%%%%%%*+:
|
|
||||||
=+#@%%%%%%@%%%%%%%@@%%%%%%%%%%%%%%@#+=
|
|
||||||
=+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#+=
|
|
||||||
-+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%*+-
|
|
||||||
.=*#%%%%%%%%%%%%%%%%%%%%%%%%#*=.
|
|
||||||
:=*##%%%%%%%%%%%%%%%%%%##*=:
|
|
||||||
.:=+*##%%%%%%%%%%##*+=:.
|
|
||||||
.:-=++****++=-:.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
chrom = AsciiArt(match=r'''"Chrom"*''', color='2 1 3 4 7', ascii=r"""
|
|
||||||
${c2} .,:loool:,.
|
|
||||||
.,coooooooooooooc,.
|
|
||||||
.,lllllllllllllllllllll,.
|
|
||||||
;ccccccccccccccccccccccccc;
|
|
||||||
${c1} '${c2}ccccccccccccccccccccccccccccc.
|
|
||||||
${c1} ,oo${c2}c::::::::okO${c5}000${c3}0OOkkkkkkkkkkk:
|
|
||||||
${c1}.ooool${c2};;;;:x${c5}K0${c4}kxxxxxk${c5}0X${c3}K0000000000.
|
|
||||||
${c1}:oooool${c2};,;O${c5}K${c4}ddddddddddd${c5}KX${c3}000000000d
|
|
||||||
${c1}lllllool${c2};l${c5}N${c4}dllllllllllld${c5}N${c3}K000000000
|
|
||||||
${c1}lllllllll${c2}o${c5}M${c4}dccccccccccco${c5}W${c3}K000000000
|
|
||||||
${c1};cllllllllX${c5}X${c4}c:::::::::c${c5}0X${c3}000000000d
|
|
||||||
${c1}.ccccllllllO${c5}Nk${c4}c;,,,;cx${c5}KK${c3}0000000000.
|
|
||||||
${c1} .cccccclllllxOO${c5}OOO${c1}Okx${c3}O0000000000;
|
|
||||||
${c1} .:ccccccccllllllllo${c3}O0000000OOO,
|
|
||||||
${c1} ,:ccccccccclllcd${c3}0000OOOOOOl.
|
|
||||||
${c1} '::ccccccccc${c3}dOOOOOOOkx:.
|
|
||||||
${c1} ..,::cccc${c3}xOOOkkko;.
|
|
||||||
${c1} ..,:${c3}dOkxl:.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cleanjaro = AsciiArt(match=r'''"Cleanjaro"*''', color='7 7', ascii=r"""
|
|
||||||
${c1}███████▌ ████████████████
|
|
||||||
███████▌ ████████████████
|
|
||||||
███████▌ ████████████████
|
|
||||||
███████▌
|
|
||||||
███████▌
|
|
||||||
███████▌
|
|
||||||
███████▌
|
|
||||||
███████▌
|
|
||||||
█████████████████████████
|
|
||||||
█████████████████████████
|
|
||||||
█████████████████████████
|
|
||||||
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cleanjaro_small = AsciiArt(match=r'''"cleanjaro_small"*''', color='7 7', ascii=r"""
|
|
||||||
${c1}█████ ██████████
|
|
||||||
█████ ██████████
|
|
||||||
█████
|
|
||||||
█████
|
|
||||||
█████
|
|
||||||
████████████████
|
|
||||||
████████████████
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
clear_linux_os = AsciiArt(match=r'''"Clear Linux OS"* | "Clear_Linux"*''', color='4 3 7 6', ascii=r"""
|
|
||||||
${c1} BBB
|
|
||||||
BBBBBBBBB
|
|
||||||
BBBBBBBBBBBBBBB
|
|
||||||
BBBBBBBBBBBBBBBBBBBB
|
|
||||||
BBBBBBBBBBB BBB
|
|
||||||
BBBBBBBB${c2}YYYYY
|
|
||||||
${c1} BBBBBBBB${c2}YYYYYY
|
|
||||||
${c1} BBBBBBBB${c2}YYYYYYY
|
|
||||||
${c1} BBBBBBBBB${c2}YYYYY${c3}W
|
|
||||||
${c4} GG${c1}BBBBBBBY${c2}YYYY${c3}WWW
|
|
||||||
${c4} GGG${c1}BBBBBBB${c2}YY${c3}WWWWWWWW
|
|
||||||
${c4} GGGGGG${c1}BBBBBB${c3}WWWWWWWW
|
|
||||||
${c4} GGGGGGGG${c1}BBBB${c3}WWWWWWWW
|
|
||||||
${c4}GGGGGGGGGGG${c1}BBB${c3}WWWWWWW
|
|
||||||
${c4}GGGGGGGGGGGGG${c1}B${c3}WWWWWW
|
|
||||||
${c4}GGGGGGGG${c3}WWWWWWWWWWW
|
|
||||||
${c4}GG${c3}WWWWWWWWWWWWWWWW
|
|
||||||
WWWWWWWWWWWWWWWW
|
|
||||||
WWWWWWWWWW
|
|
||||||
WWW
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
clearos = AsciiArt(match=r'''"ClearOS"*''', color='2', ascii=r"""
|
|
||||||
${c1} `.--::::::--.`
|
|
||||||
.-:////////////////:-.
|
|
||||||
`-////////////////////////-`
|
|
||||||
-////////////////////////////-
|
|
||||||
`//////////////-..-//////////////`
|
|
||||||
./////////////: ://///////////.
|
|
||||||
`//////:..-////: :////-..-//////`
|
|
||||||
://////` -///:.``.:///-` ://///:
|
|
||||||
`///////:. -////////-` `:///////`
|
|
||||||
.//:--////:. -////-` `:////--://.
|
|
||||||
./: .////:. --` `:////- :/.
|
|
||||||
`//-` .////:. `:////- `-//`
|
|
||||||
:///-` .////:. `:////- `-///:
|
|
||||||
`/////-` -///: :///- `-/////`
|
|
||||||
`//////- `///: :///` .//////`
|
|
||||||
`:////: `///: :///` -////:`
|
|
||||||
.://: `///: :///` -//:.
|
|
||||||
.:: `///: :///` -:.
|
|
||||||
`///: :///`
|
|
||||||
`... ...`
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
clover = AsciiArt(match=r'''"Clover"*''', color='2 6', ascii=r"""
|
|
||||||
${c1} `omo``omo`
|
|
||||||
`oNMMMNNMMMNo`
|
|
||||||
`oNMMMMMMMMMMMMNo`
|
|
||||||
oNMMMMMMMMMMMMMMMMNo
|
|
||||||
`sNMMMMMMMMMMMMMMNs`
|
|
||||||
`omo` `sNMMMMMMMMMMNs` `omo`
|
|
||||||
`oNMMMNo` `sNMMMMMMNs` `oNMMMNo`
|
|
||||||
`oNMMMMMMMNo` `oNMMNs` `oNMMMMMMMNo`
|
|
||||||
oNMMMMMMMMMMMNo` `sy` `oNMMMMMMMMMMMNo
|
|
||||||
`sNMMMMMMMMMMMMNo.${c2}oNNs${c1}.oNMMMMMMMMMMMMNs`
|
|
||||||
`oNMMMMMMMMMMMMNs.${c2}oNNs${c1}.oNMMMMMMMMMMMMNo`
|
|
||||||
oNMMMMMMMMMMMNs` `sy` `oNMMMMMMMMMMMNo
|
|
||||||
`oNMMMMMMMNs` `oNMMNo` `oNMMMMMMMNs`
|
|
||||||
`oNMMMNs` `sNMMMMMMNs` `oNMMMNs`
|
|
||||||
`oNs` `sNMMMMMMMMMMNs` `oNs`
|
|
||||||
`sNMMMMMMMMMMMMMMNs`
|
|
||||||
+NMMMMMMMMMMMMMMMMNo
|
|
||||||
`oNMMMMMMMMMMMMNo`
|
|
||||||
`oNMMMNNMMMNs`
|
|
||||||
`omo``oNs`
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cobalt = AsciiArt(match=r'''"Cobalt"*''', color='33 33 59 31 8', ascii=r"""
|
|
||||||
${c1} ///
|
|
||||||
${c1} ,//////////////
|
|
||||||
${c1} ///////////////////////////////
|
|
||||||
${c1} ///////////////${c5}***********${c1}//////
|
|
||||||
////${c5}***********************${c1}/////
|
|
||||||
/////${c5}***********************${c1}////
|
|
||||||
//////${c5},,,,,,,,,,,,,,,,,,,,,,${c1}///
|
|
||||||
//////${c5},,,,,,,,,,,,,,,,,,,,,,,,,${c1}/////
|
|
||||||
/////${c5},,,,,,,,,,,,,,,,,,,,,,,,,,,,${c1}/////
|
|
||||||
${c4} *****${c3},,,,,,,,,,,,,,,,,,,,,,,,,,,,,${c4}*****
|
|
||||||
******${c3},,,,,,,,,,,,,,,,,,,,,,,,,,,,${c4}*****
|
|
||||||
*******${c3},,,,,,,,,,,,,,,,,,,,,,,,,${c4}******
|
|
||||||
*******${c3}......................${c4}*******
|
|
||||||
******${c3}....${c4}***********************
|
|
||||||
****************************
|
|
||||||
*****
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
codex_linux = AsciiArt(match=r'''"Codex Linux"*''', color='fg', ascii=r"""
|
|
||||||
${c1}#: :+#@@@@%#
|
|
||||||
@@#: .*@@@@@@@@@
|
|
||||||
@@@@#- .@@@@@@@@@@@
|
|
||||||
@@@@@@%- %@@@@@@@@@@@
|
|
||||||
@@@@@@@@%= :@@@@%%%%@@@@
|
|
||||||
@@@@@@@@@@%==*-: .:=#
|
|
||||||
:*@@@@@@@@@@=
|
|
||||||
:*@@@@@@@@=
|
|
||||||
.*@@@@@@=
|
|
||||||
.+@@@@=
|
|
||||||
.+%@=
|
|
||||||
+=
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
condres = AsciiArt(match=r'''"Condres"*''', color='2 3 6', ascii=r"""
|
|
||||||
${c1}syyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy+${c3}.+.
|
|
||||||
${c1}`oyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy+${c3}:++.
|
|
||||||
${c2}/o${c1}+oyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy/${c3}oo++.
|
|
||||||
${c2}/y+${c1}syyyyyyyyyyyyyyyyyyyyyyyyyyyyy${c3}+ooo++.
|
|
||||||
${c2}/hy+${c1}oyyyhhhhhhhhhhhhhhyyyyyyyyy${c3}+oo+++++.
|
|
||||||
${c2}/hhh+${c1}shhhhhdddddhhhhhhhyyyyyyy${c3}+oo++++++.
|
|
||||||
${c2}/hhdd+${c1}oddddddddddddhhhhhyyyys${c3}+oo+++++++.
|
|
||||||
${c2}/hhddd+${c1}odmmmdddddddhhhhyyyy${c3}+ooo++++++++.
|
|
||||||
${c2}/hhdddmo${c1}odmmmdddddhhhhhyyy${c3}+oooo++++++++.
|
|
||||||
${c2}/hdddmmms${c1}/dmdddddhhhhyyys${c3}+oooo+++++++++.
|
|
||||||
${c2}/hddddmmmy${c1}/hdddhhhhyyyyo${c3}+oooo++++++++++:
|
|
||||||
${c2}/hhdddmmmmy${c1}:yhhhhyyyyy+${c3}+oooo+++++++++++:
|
|
||||||
${c2}/hhddddddddy${c1}-syyyyyys+${c3}ooooo++++++++++++:
|
|
||||||
${c2}/hhhddddddddy${c1}-+yyyy+${c3}/ooooo+++++++++++++:
|
|
||||||
${c2}/hhhhhdddddhhy${c1}./yo:${c3}+oooooo+++++++++++++/
|
|
||||||
${c2}/hhhhhhhhhhhhhy${c1}:-.${c3}+sooooo+++++++++++///:
|
|
||||||
${c2}:sssssssssssso++${c1}${c3}`:/:--------.````````
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
container_linux_by_coreos = AsciiArt(match=r'''"Container Linux by CoreOS"* | "Container_Linux"* | "Fedora CoreOS" | "CoreOS"*''', color='4 7 1', ascii=r"""
|
|
||||||
${c1} .....
|
|
||||||
.';:cccccccc:;'.
|
|
||||||
':ccccclc${c3}lllllllll${c1}cc:.
|
|
||||||
.;cccccccc${c3}lllllllllllllll${c1}c,
|
|
||||||
;clllccccc${c3}llllllllllllllllll${c1}c,
|
|
||||||
.cllclccccc${c3}lllll${c2}lll${c3}llllllllllll${c1}c:
|
|
||||||
ccclclcccc${c3}cllll${c2}kWMMNKk${c3}llllllllll${c1}c:
|
|
||||||
:ccclclcccc${c3}llll${c2}oWMMMMMMWO${c3}lllllllll${c1}c,
|
|
||||||
.ccllllllccc${c3}clll${c2}OMMMMMMMMM0${c3}lllllllll${c1}c
|
|
||||||
.lllllclcccc${c3}llll${c2}KMMMMMMMMMMo${c3}llllllll${c1}c.
|
|
||||||
.lllllllcccc${c3}clll${c2}KMMMMMMMMN0${c3}lllllllll${c1}c.
|
|
||||||
.cclllllcccc${c3}lllld${c2}xkkxxdo${c3}llllllllllc${c1}lc
|
|
||||||
:cccllllllcccc${c3}lllccllllcclccc${c1}cccccc;
|
|
||||||
.ccclllllllcccccccc${c3}lll${c1}ccccclccccccc
|
|
||||||
.cllllllllllclcccclccclccllllcllc
|
|
||||||
:cllllllllccclcllllllllllllcc;
|
|
||||||
.cccccccccccccclcccccccccc:.
|
|
||||||
.;cccclccccccllllllccc,.
|
|
||||||
.';ccccclllccc:;..
|
|
||||||
.....
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
crux = AsciiArt(match=r'''"CRUX"*''', color='4 5 7 6', ascii=r"""
|
|
||||||
${c1} odddd
|
|
||||||
oddxkkkxxdoo
|
|
||||||
ddcoddxxxdoool
|
|
||||||
xdclodod olol
|
|
||||||
xoc xdd olol
|
|
||||||
xdc ${c2}k00${c1}Okdlol
|
|
||||||
xxd${c2}kOKKKOkd${c1}ldd
|
|
||||||
xdco${c2}xOkdlo${c1}dldd
|
|
||||||
ddc:cl${c2}lll${c1}oooodo
|
|
||||||
odxxdd${c3}xkO000kx${c1}ooxdo
|
|
||||||
oxdd${c3}x0NMMMMMMWW0od${c1}kkxo
|
|
||||||
oooxd${c3}0WMMMMMMMMMW0o${c1}dxkx
|
|
||||||
docldkXW${c3}MMMMMMMWWN${c1}Odolco
|
|
||||||
xx${c2}dx${c1}kxxOKN${c3}WMMWN${c1}0xdoxo::c
|
|
||||||
${c2}xOkkO${c1}0oo${c3}odOW${c2}WW${c1}XkdodOxc:l
|
|
||||||
${c2}dkkkxkkk${c3}OKX${c2}NNNX0Oxx${c1}xc:cd
|
|
||||||
${c2} odxxdx${c3}xllod${c2}ddooxx${c1}dc:ldo
|
|
||||||
${c2} lodd${c1}dolccc${c2}ccox${c1}xoloo
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
crux_small = AsciiArt(match=r'''"crux_small" | KISS*''', color='4 5 7 6', ascii=r"""
|
|
||||||
${c1} ___
|
|
||||||
(${c3}.· ${c1}|
|
|
||||||
(${c2}<> ${c1}|
|
|
||||||
/ ${c3}__ ${c1}\
|
|
||||||
( ${c3}/ \ ${c1}/|
|
|
||||||
${c2}_${c1}/\ ${c3}__)${c1}/${c2}_${c1})
|
|
||||||
${c2}\/${c1}-____${c2}\/
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
crystal_linux = AsciiArt(match=r'''*"Crystal Linux"*''', color='13 5', ascii=r"""
|
|
||||||
${c1} mysssym
|
|
||||||
${c1} mysssym
|
|
||||||
${c1} mysssym
|
|
||||||
${c1} mysssym
|
|
||||||
${c1} mysssyd
|
|
||||||
${c1} mysssyd N
|
|
||||||
${c1} mysssyd mysym
|
|
||||||
${c1} mysssyd dysssym
|
|
||||||
${c1} mysssyd dysssym
|
|
||||||
${c1} mysssyd dysssym
|
|
||||||
${c1} mysssyd dysssym
|
|
||||||
${c1} mysssyd dysssym
|
|
||||||
${c1} mysssyd dysssym
|
|
||||||
${c1} mysym dysssym
|
|
||||||
${c1} N dysssym
|
|
||||||
${c1} dysssym
|
|
||||||
${c1} dysssym
|
|
||||||
${c1} dysssym
|
|
||||||
${c1} dysssym
|
|
||||||
${c1} dysssym
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cucumber = AsciiArt(match=r'''*"Cucumber"*''', color='2 3', ascii=r"""
|
|
||||||
${c1} `.-://++++++//:-.`
|
|
||||||
`:/+//${c2}::--------${c1}:://+/:`
|
|
||||||
-++/:${c2}----..........----${c1}:/++-
|
|
||||||
.++:${c2}---...........-......---${c1}:++.
|
|
||||||
/+:${c2}---....-::/:/--//:::-....---${c1}:+/
|
|
||||||
`++:${c2}--.....:---::/--/::---:.....--${c1}:++`
|
|
||||||
/+:${c2}--.....--.--::::-/::--.--.....--${c1}:+/
|
|
||||||
-o:${c2}--.......-:::://--/:::::-.......--${c1}:o-
|
|
||||||
/+:${c2}--...-:-::---:::..:::---:--:-...--${c1}:+/
|
|
||||||
o/:${c2}-...-:.:.-/:::......::/:.--.:-...-${c1}:/o
|
|
||||||
o/${c2}--...::-:/::/:-......-::::::-/-...-${c1}:/o
|
|
||||||
/+:${c2}--..-/:/:::--:::..:::--::////-..--${c1}:+/
|
|
||||||
-o:${c2}--...----::/:::/--/:::::-----...--${c1}:o-
|
|
||||||
/+:${c2}--....://:::.:/--/:.::://:....--${c1}:+/
|
|
||||||
`++:${c2}--...-:::.--.:..:.--.:/:-...--${c1}:++`
|
|
||||||
/+:${c2}---....----:-..-:----....---${c1}:+/
|
|
||||||
.++:${c2}---..................---${c1}:++.
|
|
||||||
-/+/:${c2}----..........----${c1}:/+/-
|
|
||||||
`:/+//${c2}::--------:::${c1}/+/:`
|
|
||||||
`.-://++++++//:-.`
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cutefishos = AsciiArt(match=r'''"CutefishOS"*''', color='6 7 4', ascii=r"""
|
|
||||||
${c1} ___ww___
|
|
||||||
_ _wwMMM@M^^^^MMMMww_
|
|
||||||
M0w_ _wMMM~~ ~~MMm_
|
|
||||||
~MMy _ww0M~ ~MMy
|
|
||||||
~MMMM~ o "MM
|
|
||||||
${c3} jw0M~~MMMw_ _wMM'
|
|
||||||
wMM~ ~~MMmw__ __w0M~
|
|
||||||
~ ~~MM0MmwwwwwwwwwMMM~
|
|
||||||
~~~~^^~~~
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cuteos = AsciiArt(match=r'''"CuteOS"*''', color='33 50 57', ascii=r"""
|
|
||||||
${c2}
|
|
||||||
${c3}1ua${c2}
|
|
||||||
${c3}MMM1ua${c2}
|
|
||||||
${c1}MM${c2}EE ${c3} MMMMM1uazE${c2}
|
|
||||||
${c1}MM ${c2}EEEE ${c3}M1MM1uazzEn ${c2}EEEE MME
|
|
||||||
EEEEE ${c3}MMM uazEno ${c2}EEEE
|
|
||||||
EEEEE${c1}MMMMMMEno~; ${c2}EE E${c2}
|
|
||||||
EE ${c1}MMMMMMMM~;;E ${c2}MMMMM M ${c2}
|
|
||||||
E ${c1}MMMMMMMMM ${c2} E E ${c2}
|
|
||||||
${c1}MMMMMMMMMMM
|
|
||||||
${c1}MMMMMMMMM ${c2}EE ${c1}
|
|
||||||
MM1MMMM ${c2}EEE ${c1}
|
|
||||||
MMMMM
|
|
||||||
MMM
|
|
||||||
M
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
cyberos = AsciiArt(match=r'''"CyberOS"*''', color='50 32 57', ascii=r"""
|
|
||||||
${c3} !M$EEEEEEEEEEEP
|
|
||||||
.MMMMM000000Nr.
|
|
||||||
${c3}&MMMMMM${c2}MMMMMMMMMMMMM9
|
|
||||||
${c3}~MMM${c1}MMMM${c2}MMMMMMMMMMMMC
|
|
||||||
${c1}" ${c3}M${c1}MMMMMMM${c2}MMMMMMMMMMs
|
|
||||||
${c1}iM${c2}MMM&&${c1}MMMMMMMM${c2}MMMMMMMM\
|
|
||||||
${c1}BMMM${c2}MMMMM${c1}MMMMMMM${c2}MMMMMM${c3}"
|
|
||||||
${c1}9MMMMM${c2}MMMMMMM${c1}MMMM${c2}MMMM${c3}MMMf-
|
|
||||||
${c2}sMMMMMMMM${c1}MM${c2}M${c3}MMMMMMMMM3_
|
|
||||||
${c2}+ffffffff${c1}P${c3}MMMMMMMMMMMM0
|
|
||||||
${c2}CMMMMMMMMMMM
|
|
||||||
}MMMMMMMMM
|
|
||||||
~MMMMMMM
|
|
||||||
"RMMMM
|
|
||||||
.PMB
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
dahlia = AsciiArt(match=r'''"dahlia"*''', color='1 7 3', ascii=r"""
|
|
||||||
${c1}
|
|
||||||
.#.
|
|
||||||
*%@@@%*
|
|
||||||
.,,,,,(&@@@@@@@&/,,,,,.
|
|
||||||
,#@@@@@@@@@@@@@@@@@@@@@#.
|
|
||||||
,#@@@@@@@&#///#&@@@@@@@#.
|
|
||||||
,/%&@@@@@%/, .,(%@@@@@&#/.
|
|
||||||
*#&@@@@@@#,. .*#@@@@@@&#,
|
|
||||||
.&@@@@@@@@@( .(@@@@@@@@@&&.
|
|
||||||
#@@@@@@@@@@( )@@@@@@@@@@@#
|
|
||||||
°@@@@@@@@@@( .(@@@@@@@@@@@°
|
|
||||||
*%@@@@@@@(. ,#@@@@@@@%*
|
|
||||||
,(&@@@@@@%*. ./%@@@@@@%(,
|
|
||||||
,#@@@@@@@&(***(&@@@@@@@#.
|
|
||||||
,#@@@@@@@@@@@@@@@@@@@@@#.
|
|
||||||
,*****#&@@@@@@@&(*****,
|
|
||||||
,/%@@@%/.
|
|
||||||
,#,
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
darkos = AsciiArt(match=r'''"DarkOs"''', color='1 6 5 3 2', ascii=r"""
|
|
||||||
|
|
||||||
${c3}⠀⠀⠀⠀ ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠢⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c1}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣶⠋⡆⢹⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c5}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡆⢀⣤⢛⠛⣠⣿⠀⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c6}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣶⣿⠟⣡⠊⣠⣾⣿⠃⣠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c2}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣯⣿⠀⠊⣤⣿⣿⣿⠃⣴⣧⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c1}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣤⣶⣿⣿⡟⣠⣶⣿⣿⣿⢋⣤⠿⠛⠉⢁⣭⣽⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c4} ⠀⠀⠀⠀⠀⠀ ⠀⣠⠖⡭⢉⣿⣯⣿⣯⣿⣿⣿⣟⣧⠛⢉⣤⣶⣾⣿⣿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c5}⠀⠀⠀⠀⠀⠀⠀⠀⣴⣫⠓⢱⣯⣿⢿⠋⠛⢛⠟⠯⠶⢟⣿⣯⣿⣿⣿⣿⣿⣿⣦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c2}⠀⠀⠀⠀⠀⠀⢀⡮⢁⣴⣿⣿⣿⠖⣠⠐⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠉⠛⠛⠛⢿⣶⣄⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c3}⠀⠀⠀⠀⢀⣤⣷⣿⣿⠿⢛⣭⠒⠉⠀⠀⠀⣀⣀⣄⣤⣤⣴⣶⣶⣶⣿⣿⣿⣿⣿⠿⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c1}⠀⢀⣶⠏⠟⠝⠉⢀⣤⣿⣿⣶⣾⣿⣿⣿⣿⣿⣿⣟⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c6}⢴⣯⣤⣶⣿⣿⣿⣿⣿⡿⣿⣯⠉⠉⠉⠉⠀⠀⠀⠈⣿⡀⣟⣿⣿⢿⣿⣿⣿⣿⣿⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c5}⠀⠀⠀⠉⠛⣿⣧⠀⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠃⣿⣿⣯⣿⣦⡀⠀⠉⠻⣿⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c3}⠀⠀⠀⠀⠀⠀⠉⢿⣮⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⣼⣿⠀⣯⠉⠉⠛⢿⣿⣷⣄⠀⠈⢻⣆⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c2}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠢⠀⠀⠀⠀⠀⠀⠀⢀⢡⠃⣾⣿⣿⣦⠀⠀⠀⠙⢿⣿⣤⠀⠙⣄⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c6}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⢋⡟⢠⣿⣿⣿⠋⢿⣄⠀⠀⠀⠈⡄⠙⣶⣈⡄⠀⠀⠀⠀⠀⠀
|
|
||||||
${c1}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠐⠚⢲⣿⠀⣾⣿⣿⠁⠀⠀⠉⢷⡀⠀⠀⣇⠀⠀⠈⠻⡀⠀⠀⠀⠀⠀
|
|
||||||
${c4}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢢⣀⣿⡏⠀⣿⡿⠀⠀⠀⠀⠀⠀⠙⣦⠀⢧⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c3}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⠿⣧⣾⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⣮⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
${c5}⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠙⠛⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
darwin = AsciiArt(match=r'''"Darwin"''', color='2 3 1 1 5 4', ascii=r"""
|
|
||||||
${c1} c.'
|
|
||||||
,xNMM.
|
|
||||||
.OMMMMo
|
|
||||||
lMMM"
|
|
||||||
.;loddo:. .olloddol;.
|
|
||||||
cKMMMMMMMMMMNWMMMMMMMMMM0:
|
|
||||||
${c2} .KMMMMMMMMMMMMMMMMMMMMMMMWd.
|
|
||||||
XMMMMMMMMMMMMMMMMMMMMMMMX.
|
|
||||||
${c3};MMMMMMMMMMMMMMMMMMMMMMMM:
|
|
||||||
:MMMMMMMMMMMMMMMMMMMMMMMM:
|
|
||||||
${c4}.MMMMMMMMMMMMMMMMMMMMMMMMX.
|
|
||||||
kMMMMMMMMMMMMMMMMMMMMMMMMWd.
|
|
||||||
${c5}'XMMMMMMMMMMMMMMMMMMMMMMMMMMk
|
|
||||||
'XMMMMMMMMMMMMMMMMMMMMMMMMK.
|
|
||||||
${c6}kMMMMMMMMMMMMMMMMMMMMMMd
|
|
||||||
;KMMMMMMMWXXWMMMMMMMk.
|
|
||||||
"cooc*" "*coo'"
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
debian = AsciiArt(match=r'''"Debian"*''', color='1 7 3', ascii=r'''
|
|
||||||
${c2} _,met$$$$$gg.
|
|
||||||
,g$$$$$$$$$$$$$$$P.
|
|
||||||
,g$$P" """Y$$.".
|
|
||||||
,$$P' `$$$.
|
|
||||||
',$$P ,ggs. `$$b:
|
|
||||||
`d$$' ,$P"' ${c1}.${c2} $$$
|
|
||||||
$$P d$' ${c1},${c2} $$P
|
|
||||||
$$: $$. ${c1}-${c2} ,d$$'
|
|
||||||
$$; Y$b._ _,d$P'
|
|
||||||
Y$$. ${c1}`.${c2}`"Y$$$$P"'
|
|
||||||
${c2} `$$b ${c1}"-.__
|
|
||||||
${c2} `Y$$
|
|
||||||
`Y$$.
|
|
||||||
`$$b.
|
|
||||||
`Y$$b.
|
|
||||||
`"Y$b._
|
|
||||||
`"""
|
|
||||||
''')
|
|
||||||
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
debian_small = AsciiArt(match=r'''"debian_small"''', color='1 7 3', ascii=r"""
|
|
||||||
${c1} _____
|
|
||||||
/ __ \
|
|
||||||
| / |
|
|
||||||
| \___-
|
|
||||||
-_
|
|
||||||
--_
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
deepin = AsciiArt(match=r'''"Deepin"*''', color='2 7', ascii=r"""
|
|
||||||
${c1} ............
|
|
||||||
.';;;;;. .,;,.
|
|
||||||
.,;;;;;;;. ';;;;;;;.
|
|
||||||
.;::::::::' .,::;;,''''',.
|
|
||||||
,'.:::::::: .;;'. ';
|
|
||||||
;' 'cccccc, ,' :: '.. .:
|
|
||||||
,, :ccccc. ;: .c, '' :. ,;
|
|
||||||
.l. cllll' ., .lc :; .l' l.
|
|
||||||
.c :lllc ;cl: .l' .ll. :'
|
|
||||||
.l 'looc. . ,o: 'oo' c,
|
|
||||||
.o. .:ool::coc' .ooo' o.
|
|
||||||
:: ..... .;dddo ;c
|
|
||||||
l:... .';lddddo. ,o
|
|
||||||
lxxxxxdoolllodxxxxxxxxxc :l
|
|
||||||
,dxxxxxxxxxxxxxxxxxxl. 'o,
|
|
||||||
,dkkkkkkkkkkkkko;. .;o;
|
|
||||||
.;okkkkkdl;. .,cl:.
|
|
||||||
.,:cccccccc:,.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
desaos = AsciiArt(match=r'''"DesaOS"''', color='2 7', ascii=r"""
|
|
||||||
${c1}███████████████████████
|
|
||||||
███████████████████████
|
|
||||||
███████████████████████
|
|
||||||
███████████████████████
|
|
||||||
████████ ███████
|
|
||||||
████████ ███████
|
|
||||||
████████ ███████
|
|
||||||
████████ ███████
|
|
||||||
████████ ███████
|
|
||||||
████████ ███████
|
|
||||||
████████ ███████
|
|
||||||
██████████████████████████████
|
|
||||||
██████████████████████████████
|
|
||||||
████████████████████████
|
|
||||||
████████████████████████
|
|
||||||
████████████████████████
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
devuan = AsciiArt(match=r'''"Devuan"*''', color='5 7', ascii=r"""
|
|
||||||
${c1} ..,,;;;::;,..
|
|
||||||
`':ddd;:,.
|
|
||||||
`'dPPd:,.
|
|
||||||
`:b$$b`.
|
|
||||||
'P$$$d`
|
|
||||||
.$$$$$`
|
|
||||||
;$$$$$P
|
|
||||||
.:P$$$$$$`
|
|
||||||
.,:b$$$$$$$;'
|
|
||||||
.,:dP$$$$$$$$b:'
|
|
||||||
.,:;db$$$$$$$$$$Pd'`
|
|
||||||
,db$$$$$$$$$$$$$$b:'`
|
|
||||||
:$$$$$$$$$$$$b:'`
|
|
||||||
`$$$$$bd:''`
|
|
||||||
`'''`
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
dietpi = AsciiArt(match=r'''"DietPi"*''', color='2 0', ascii=r"""
|
|
||||||
${c1} :=+******+- -+******+=:
|
|
||||||
=#-::-::::-=#:-#=-::::-::-#=
|
|
||||||
:%-::--==-::-%%-::-==--::-%:
|
|
||||||
+#-:::::=+++${c2}@@${c1}+++=-::::-#=
|
|
||||||
:#+-::::=%${c2}@@@@@${c1}=::::-+#:
|
|
||||||
=@%##%${c2}@@@@@@@@${c1}%##%@=
|
|
||||||
${c2} .#@@@@@@@@@@@@@@@@@@@@#.
|
|
||||||
%@@@@@@@@@@@@@@@@@@@@@@%
|
|
||||||
-@@@@@@@@@@@@@@@@@@@@@@@@:
|
|
||||||
.#@@@@@@@@@@%%%%%@@@@@@@@@@@#.
|
|
||||||
#@@@${c1}+-=*#%${c2}%%%%%%%%%${c1}%%#+--#${c2}@@@#
|
|
||||||
%@@%${c1}*. .:${c2}=*%%%%*${c1}=: .#${c2}@@@%
|
|
||||||
:%@@@${c1}#+=-:${c2}:-*%%%%+::${c1}:-=+%${c2}@@@%:
|
|
||||||
:@@@@%@%%%%@${c1}#${c2}#${c1}#${c2}%@%%%%@%@@@@.
|
|
||||||
+@@@@@@@@@${c1}%${c2}=*+${c1}%${c2}@%@@@@@@@@+
|
|
||||||
#@@@@@@@@@@@@@@@@@@@@@@#
|
|
||||||
-#@@@@@@@@@@@@@@@@@@#-
|
|
||||||
-*%@@@@@@@@@@%*-
|
|
||||||
.+%@@@@%+.
|
|
||||||
""")
|
|
||||||
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
# This file is automatically generated. Please do not modify.
|
|
||||||
|
|
||||||
from . import AsciiArt
|
|
||||||
|
|
||||||
digital_unix = AsciiArt(match=r'''"digital UNIX"*''', color='1 6 7', ascii=r"""
|
|
||||||
${c1} +-+-+-+-+-+-+-+
|
|
||||||
|${c3}d${c1}|${c3}i${c1}|${c3}g${c1}|${c3}i${c1}|${c3}t${c1}|${c3}a${c1}|${c3}l${c1}|
|
|
||||||
+-+-+-+-+-+-+-+
|
|
||||||
${c2} _ _ _ _ _______ __
|
|
||||||
| | | | \ | |_ _\ \ / /
|
|
||||||
| | | | \| | | | \ V /
|
|
||||||
| | | | . ` | | | > <
|
|
||||||
| |__| | |\ |_| |_ / . \
|
|
||||||
\____/|_| \_|_____/_/ \_\
|
|
||||||
""")
|
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user