1
0
mirror of https://github.com/HorlogeSkynet/archey4 synced 2025-06-14 04:00:10 +02:00

enso support

This commit is contained in:
Jack Gannon
2022-11-14 16:34:03 +00:00
committed by Samuel FORESTIER
parent aac07a5567
commit 35fa95e28b
2 changed files with 28 additions and 0 deletions

@ -33,6 +33,7 @@ class Distributions(Enum):
DEBIAN = "debian"
DEVUAN = "devuan"
ELEMENTARY = "elementary"
ENSO = "enso"
FEDORA = "fedora"
FREEBSD = "freebsd"
GENTOO = "gentoo"

27
archey/logos/enso.py Normal file

@ -0,0 +1,27 @@
"""Enso logo"""
from archey.colors import Colors
COLORS = [Colors.WHITE_NORMAL]
LOGO = [
"""{c[0]} .:--==--:. """,
"""{c[0]} :=*#############*+-. """,
"""{c[0]} .+##################*##*: """,
"""{c[0]} .*##########+==-==++*####*##- """,
"""{c[0]} =########=: .-+**#***. """,
"""{c[0]} *#######- ++*#**. """,
"""{c[0]} +######+ -*+#** """,
"""{c[0]} :######* .*+**= """,
"""{c[0]} :######* .*+**= """,
"""{c[0]} ####### +++#. """,
"""{c[0]} #######. ++=*. """,
"""{c[0]} *######+ .-+*+ """,
"""{c[0]} :#######- -:*+: """,
"""{c[0]} =#######*. :.*+- """,
"""{c[0]} +########*- :*=- """,
"""{c[0]} =###########+=: =+=: """,
"""{c[0]} .+#############. .-==: """,
"""{c[0]} .=###########= ..:--:. """,
"""{c[0]} .-+######+ """,
]