Skip to content

Commit

Permalink
[PR] #61 from juliavdkris/master
Browse files Browse the repository at this point in the history
Add aperture science ASCII art
  • Loading branch information
hykilpikonna authored Jan 9, 2023
2 parents 139b892 + 1aaeae1 commit de97821
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
26 changes: 26 additions & 0 deletions hyfetch/distros/aperture.py
Original file line number Diff line number Diff line change
@@ -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@= =,
=++%%%%+/:-.
""")

6 changes: 5 additions & 1 deletion hyfetch/distros/distro_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -1336,4 +1336,8 @@ def detect(name: str) -> AsciiArt | None:
if name == 'sunos':
from .sunos import sunos
return sunos


if name == 'aperture':
from .aperture import aperture
return aperture

0 comments on commit de97821

Please sign in to comment.