mirror of
https://github.com/HorlogeSkynet/archey4
synced 2024-11-24 04:00:10 +01:00
Samuel FORESTIER
0a970c010f
This patch is inspired from <armbian/build#2499>. Due to Armbian "base-files", `Distro` entry will still show "Debian" on this platform.
51 lines
2.6 KiB
Python
51 lines
2.6 KiB
Python
"""Armbian logo"""
|
|
|
|
from archey.colors import Colors
|
|
|
|
COLORS = [Colors.RED_BRIGHT, Colors.WHITE_NORMAL]
|
|
|
|
LOGO = [
|
|
"""{c[1]} .. """,
|
|
"""{c[1]} `:]x**j-,' """,
|
|
"""{c[1]} .,+t***********z\\<" """,
|
|
"""{c[1]} ?******************; """,
|
|
"""{c[1]} '*n` .'`^,;;,^`'. ,cc. """,
|
|
"""{c[1]} -<. .[l """,
|
|
"""{c[1]} // ^^ ^^ \\\\ """,
|
|
"""{c[1]} !^ {c[0]}^^{c[1]} ": """,
|
|
"""{c[1]} 'tt}}` {c[0]}!~]rj_{c[1]} ")t/. """,
|
|
"""{c[1]} Itttt?' {c[0]}~~]rr]{c[1]} `{{tttt, """,
|
|
"""{c[1]} \\tttttt!""I{c[0]}_]r({c[1]}\"\"\"~tttttt1 """,
|
|
"""{c[1]} '_tttttttttttt{c[0]})f{c[1]}tttttttttttti. """,
|
|
"""{c[1]} \\*ztttttttttttttttttttttttttf**[ """,
|
|
"""{c[1]} l**c)tttttttttttttttttttttttt(z**, """,
|
|
"""{c[1]} .z*x.`tttttttttttttttttttttttt.`u*n""",
|
|
"""{c[1]} >` (tttttttttttttttttttttt] "I """,
|
|
"""{c[1]} ,tttttttttttttttttttttt` """,
|
|
"""{c[1]} ./ttttt{c[0]}f{c[1]}tttttttt{c[0]}f{c[1]}ttttt( """,
|
|
"""{c[1]} 'I){c[0]}))(\\()({c[1]}tt{c[0]}))|\\()({c[1]}{{;' """,
|
|
"""{c[1]} {c[0]}.~~~~~~~|)~~~~~~~<{c[1]} """,
|
|
"""{c[1]} '{c[0]}[)))))1{c[1]}|({c[0]}))))))){c[1]}? """,
|
|
"""{c[1]} {c[0]}",,,"{c[1]} {c[0]}",,,^{c[1]} """,
|
|
]
|
|
|
|
# Taken from official patch for Neofetch (see <armbian/build#2499>).
|
|
COLORS_CHIPSET = COLORS
|
|
|
|
LOGO_CHIPSET = [
|
|
"""{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]} █ █ █ █ █ █ █ █ █ █ █ """,
|
|
]
|