archey4/archey/logos/buildroot.py

26 lines
1.1 KiB
Python

"""Buildroot logo"""
from archey.colors import Colors
COLORS = [Colors.YELLOW_BRIGHT]
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]} ..:-----::::::::::...... """,
]