From 48819dc592903c7de0feaa53cda1947677742984 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 17 Oct 2016 00:07:30 +1100 Subject: [PATCH] Fix glitched line endings on long lines --- neofetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index abd4905a..78bcca28 100755 --- a/neofetch +++ b/neofetch @@ -2397,7 +2397,7 @@ info() { [ -z "$2" ] && string="${string/*: }" # Print the string - printf "%b%s\n" "${padding}​${string}${reset}" + printf "%b%s\n" "${padding}​${string}${reset} " # Calculate info height info_height="$((info_height+=1))" @@ -2432,7 +2432,7 @@ prin() { string="$(trim "$string")" # Print the info - printf "%b%s\n" "${padding}​${string}${reset}" + printf "%b%s\n" "${padding}​${string}${reset} " # Calculate info height info_height="$((info_height+=1))"