From 075fc467d271c2f844831810d6a7e43b7f3d0fe0 Mon Sep 17 00:00:00 2001 From: Thundertides <40047664+Thundertides@users.noreply.github.com> Date: Sun, 7 Sep 2025 10:59:02 -0600 Subject: [PATCH] Temporary fix to GH-399 (#428) --- hyfetch/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hyfetch/main.py b/hyfetch/main.py index d8f92fc8..d0b4616f 100755 --- a/hyfetch/main.py +++ b/hyfetch/main.py @@ -465,6 +465,7 @@ def run(): try: asc = get_distro_ascii() if not args.ascii_file else Path(args.ascii_file).read_text("utf-8") asc = config.color_align.recolor_ascii(asc, preset) + asc = '\n'.join(asc.split('\n')[1:]) neofetch_util.run(asc, config.backend, config.args or '') except Exception as e: print(f'Error: {e}')