From 2b94fbfadb0c768a2712c9f57faccccf776f957e Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 19 Dec 2016 15:13:45 +1100 Subject: [PATCH] General: Fix artifacts and broken block width in TTYs --- neofetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index 8d480093..b9270cbb 100755 --- a/neofetch +++ b/neofetch @@ -1738,7 +1738,7 @@ get_cols() { if [[ "$color_blocks" == "on" ]]; then # Convert the width to space chars. printf -v block_width "%${block_width}s" - block_width="${block_width// /█}" + block_width="${block_width// /.}" # Generate the string. for ((start; start<=end; start++)); do @@ -2364,7 +2364,7 @@ get_underline() { } get_line_break() { - line_break="​ " + line_break="${zws} " # Calculate info height info_height="$((info_height+=1))"