-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[LOGO] Adds official support for Armbian
This patch is inspired from <armbian/build#2499>. Due to Armbian "base-files", `Distro` entry will still show "Debian" on this platform.
- Loading branch information
1 parent
df61178
commit 0a970c0
Showing
2 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
"""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]} █ █ █ █ █ █ █ █ █ █ █ """, | ||
] |