From 96f3aa948dc0eea20a317fe447f154b6f9bc3ec3 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 30 Oct 2019 12:13:42 +0000 Subject: [PATCH] ascii: fix Manjaro gap. Closes #1175 --- neofetch | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index ef83acdc..5b3d7840 100755 --- a/neofetch +++ b/neofetch @@ -3586,7 +3586,8 @@ print_ascii() { # Calculate size of ascii file in line length / line count. while IFS=$'\n' read -r line; do - line="${line//\\\\/\\}" + line=${line//\\\\/\\} + line=${line//█/ } ((++lines,${#line}>ascii_len)) && ascii_len="${#line}" done <<< "${ascii_data//\$\{??\}}"