commit
de97821341
2 changed files with 31 additions and 1 deletions
26
hyfetch/distros/aperture.py
Normal file
26
hyfetch/distros/aperture.py
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
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@= =,
|
||||||
|
=++%%%%+/:-.
|
||||||
|
""")
|
||||||
|
|
|
@ -1336,4 +1336,8 @@ def detect(name: str) -> AsciiArt | None:
|
||||||
if name == 'sunos':
|
if name == 'sunos':
|
||||||
from .sunos import sunos
|
from .sunos import sunos
|
||||||
return sunos
|
return sunos
|
||||||
|
|
||||||
|
if name == 'aperture':
|
||||||
|
from .aperture import aperture
|
||||||
|
return aperture
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue