diff --git a/hyfetch/constants.py b/hyfetch/constants.py index abff92b2..d6424a3b 100644 --- a/hyfetch/constants.py +++ b/hyfetch/constants.py @@ -13,3 +13,20 @@ try: except Exception: TERM_LEN = 40 +TEST_ASCII = r""" + |\___/| + ) ( + =\ /= + )===( + / \ + | | + / \ + \ / +/\_/\_ _/_/\_ + | |( ( | | + | | ) ) | | + | |(_( | | + | | | | | + | | | | |""".strip() + +TEST_ASCII_WIDTH = max(len(line) for line in TEST_ASCII.split('\n'))