1
0
mirror of https://github.com/HorlogeSkynet/archey4 synced 2025-04-23 16:00:13 +02:00

[LOGOS] Adds proper support for Quirinux

> See <KittyKatt/screenFetch#785>.
This commit is contained in:
Samuel FORESTIER 2024-05-10 16:01:32 +02:00
parent efa195c2c6
commit 55b97affd1
2 changed files with 26 additions and 0 deletions

@ -52,6 +52,7 @@ class Distributions(Enum):
OPENSUSE = "opensuse"
POP = "pop"
PARABOLA = "parabola"
QUIRINUX = "quirinux"
RASPBIAN = "raspbian"
ROCKY = "rocky"
RHEL = "rhel"

25
archey/logos/quirinux.py Normal file

@ -0,0 +1,25 @@
"""Quirinux logo"""
from archey.colors import Colors
COLORS = [Colors.MAGENTA_BRIGHT, Colors.WHITE_BRIGHT]
LOGO = [
"""{c[0]} @=++++++++++=@ """,
"""{c[0]} =++++++++++++++++++= """,
"""{c[0]} *++++++++++++++++++++++* """,
"""{c[0]} =++++++++++++++++++++++++++= """,
"""{c[0]} *++++++++{c[1]}-..........-{c[0]}++++++++* """,
"""{c[0]} =++++++++{c[1]}..............{c[0]}++++++++= """,
"""{c[0]} @++++++++{c[1]}:.....:{c[0]}++{c[1]}:.....:{c[0]}++++++++@""",
"""{c[0]} =++++++++{c[1]}:.....{c[0]}++++{c[1]}.....:{c[0]}++++++++=""",
"""{c[0]} =++++++++{c[1]}:.....{c[0]}++++{c[1]}.....:{c[0]}++++++++=""",
"""{c[0]} #++++++++{c[1]}:.....{c[0]}++++{c[1]}.....:{c[0]}++++++++#""",
"""{c[0]} +++++++++{c[1]}......{c[0]}--{c[1]}......{c[0]}+++++++++ """,
"""{c[0]} @++++++++{c[1]}:............:{c[0]}++++++++@ """,
"""{c[0]} @+++++++++++{c[1]}-....-{c[0]}+++++++++++@ """,
"""{c[0]} *++++++++++{c[1]}::::{c[0]}++++++++++* """,
"""{c[0]} *++++++++++++++++++++* """,
"""{c[0]} @*++++++++++++++*@ """,
"""{c[0]} @#====#@ """,
]