From a4d9c557b3c7e55510bf4009537bc4963760e4d2 Mon Sep 17 00:00:00 2001 From: Julian Torreno Date: Sun, 4 Oct 2020 07:26:51 -0400 Subject: [PATCH] Remove extra newlines from get_cols (#1449) Co-authored-by: Julian Torreno --- neofetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index f53cd9b8..19e574fe 100755 --- a/neofetch +++ b/neofetch @@ -3807,8 +3807,8 @@ get_cols() { ((info_height+=block_range[1]>7?block_height+3:block_height+2)) case $col_offset in - "auto") printf '\n\e[%bC%b\n\n' "$text_padding" "${zws}${cols}" ;; - *) printf '\n\e[%bC%b\n\n' "$col_offset" "${zws}${cols}" ;; + "auto") printf '\n\e[%bC%b\n' "$text_padding" "${zws}${cols}" ;; + *) printf '\n\e[%bC%b\n' "$col_offset" "${zws}${cols}" ;; esac fi