From e44040b2aa512b78a99ccd28b80e87e1c9ab3d23 Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Mon, 5 Sep 2022 17:27:40 -0400 Subject: [PATCH] [F] Fix incorrect ascii length when backslashes are present https://github.com/dylanaraps/neofetch/pull/1543 https://github.com/hykilpikonna/hyfetch/issues/19 --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index ec8722ec..9d2ae150 100755 --- a/neofetch +++ b/neofetch @@ -4712,7 +4712,7 @@ print_ascii() { then lines=$ascii_lines else - while IFS=$'\n' read -r line; do + while IFS=$'\n' read line; do line=${line//█/ } # Fast method to strip codes strip_escape_codes "${line}" line