diff --git a/archey/distributions.py b/archey/distributions.py index 06dcb85d..50cac550 100644 --- a/archey/distributions.py +++ b/archey/distributions.py @@ -52,6 +52,7 @@ class Distributions(Enum): OPENSUSE = "opensuse" POP = "pop" PARABOLA = "parabola" + QUIRINUX = "quirinux" RASPBIAN = "raspbian" ROCKY = "rocky" RHEL = "rhel" diff --git a/archey/logos/quirinux.py b/archey/logos/quirinux.py new file mode 100644 index 00000000..59ca9a9e --- /dev/null +++ b/archey/logos/quirinux.py @@ -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]} @#====#@ """, +]