Browse Source

ascii: fix Manjaro gap. Closes #1175

Dylan Araps 5 years ago
parent
commit
96f3aa948d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      neofetch

+ 2 - 1
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//\$\{??\}}"