[PR] #311 from Til7701: Colorful NixOS Logo

Colorful NixOS logo
This commit is contained in:
Azalea 2024-10-23 08:58:12 -07:00 committed by GitHub
commit 87e6092446
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 57 additions and 0 deletions

View file

@ -884,6 +884,10 @@ def detect(name: str) -> AsciiArt | None:
from .nixos_old import nixos_old
return nixos_old
if name.startswith('nixos_colorful'):
from .nixos_colorful import nixos_colorful
return nixos_colorful
if name.startswith('nixos'):
from .nixos import nixos
return nixos

View file

@ -0,0 +1,27 @@
# This file is automatically generated. Please do not modify.
from . import AsciiArt
nixos_colorful = AsciiArt(match=r'''"nixos_colorful"*''', color='4 6 4 6 4 6', ascii=r"""
${c1} ${c2}
${c1} ${c2}
${c1} ${c2}
${c1} ${c2}
${c1} ${c2} ${c3}
${c1} ${c2} ${c3}
${c6} ${c2} ${c3}
${c6} ${c2} ${c3}
${c6} ${c2} ${c3}
${c6} ${c3}
${c6} ${c3}
${c6} ${c5} ${c3}
${c6} ${c5} ${c3}
${c6} ${c5} ${c3}
${c6} ${c5} ${c4}
${c6} ${c5} ${c4}
${c5} ${c4}
${c5} ${c4}
${c5} ${c4}
${c5} ${c4}
""")