Skip to content

Commit

Permalink
[LOGOS] Adds proper support for Quirinux
Browse files Browse the repository at this point in the history
  • Loading branch information
HorlogeSkynet committed May 10, 2024
1 parent efa195c commit 55b97af
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions archey/distributions.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class Distributions(Enum):
OPENSUSE = "opensuse"
POP = "pop"
PARABOLA = "parabola"
QUIRINUX = "quirinux"
RASPBIAN = "raspbian"
ROCKY = "rocky"
RHEL = "rhel"
Expand Down
25 changes: 25 additions & 0 deletions archey/logos/quirinux.py
Original file line number Diff line number Diff line change
@@ -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]} @#====#@ """,
]

0 comments on commit 55b97af

Please sign in to comment.