[U] Release 1.4.5

This commit is contained in:
Hykilpikonna 2022-12-19 11:13:37 -05:00
parent 24a1283095
commit 007c82b3f4
No known key found for this signature in database
GPG key ID: 256CD01A41D7FA26
9 changed files with 218 additions and 130 deletions

View file

@ -561,6 +561,10 @@ def detect(name: str) -> AsciiArt | None:
from .hyperbola import hyperbola
return hyperbola
if name.startswith('hybrid'):
from .hybrid import hybrid
return hybrid
if name.startswith('iglunix') or name.startswith('iglu'):
from .iglunix import iglunix
return iglunix
@ -1045,6 +1049,10 @@ def detect(name: str) -> AsciiArt | None:
from .shastraos import shastraos
return shastraos
if name.startswith('sasanqua'):
from .sasanqua import sasanqua
return sasanqua
if name.startswith('scientific'):
from .scientific import scientific
return scientific
@ -1229,6 +1237,10 @@ def detect(name: str) -> AsciiArt | None:
from .uwuntu import uwuntu
return uwuntu
if name.startswith('urukos'):
from .urukos import urukos
return urukos
if name.startswith('venom'):
from .venom import venom
return venom

22
hyfetch/distros/hybrid.py Normal file
View file

@ -0,0 +1,22 @@
from . import AsciiArt
hybrid = AsciiArt(match=r'''"Hybrid"*''', color='4 12', 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}########
""")

View file

@ -0,0 +1,26 @@
from . import AsciiArt
sasanqua = AsciiArt(match=r'''"Sasanqua"*''', color='5 1 5', ascii=r"""
${c1}
__,_
_µ,* º,
ñ "'
) _, __
_,,,_ ^µ ' 1µ╕º^el "%µ
' K Yµ& 1l ╞)
" ^Ü 1" `1µ
Γ h _¿;, ^,
K ^u_ * ¥ Ñ
ºu,, I Å
Ü _" ║µ_¿╝"
Yu_ º_ l1µ
l , Yµ___ª Γl
hⁿI 1l Ñ Ñ
Ñ ¥,___1l Ñ ¿ª
Ü L ¿¿ª P
ª,__ *ⁿÑⁿ^µ ª
,,__* "ⁿⁿ*"
""")

26
hyfetch/distros/urukos.py Normal file
View file

@ -0,0 +1,26 @@
from . import AsciiArt
urukos = AsciiArt(match=r'''"UrukOS"*''', color='12 12 7 12 4', ascii=r"""
${c3} :${c4}:::::::::::::: ${c5}.
${c3}=#${c4}*============. ${c5}:#:
${c3}=##%${c4}+----------. ${c5}.###:
${c3}=####. ${c5}.####:
${c3}=####. ${c5}.####:
${c3}=###*. .=${c4}--------. ${c5}####:
${c3}=####. .*#+${c4}======- ${c5}####:
${c3}=###*. .*###+${c4}====- ${c5}####:
${c3}=###*. .*#####+${c4}==- ${c5}####:
${c3}=###*. .*#######+${c4}: ${c5}####:
${c3}=###*. .*#######+${c4}: ${c5}####:
${c3}=###*. .*#####+${c4}==- ${c5}####:
${c3}=###*. .*###+${c4}====- ${c5}####:
${c3}=####. .*#+${c4}======- ${c5}####:
${c3}=###*. .=${c4}--------. ${c5}.####:
${c3}=####. ${c5}.####:
${c3}=####. ${c5}.####:
${c3}=###+${c4}--------------${c5}####:
${c3}=#+${c4}=================-${c5}:
${c3}:${c4}::::::::::::::::::.
""")