From 3e9c3d648cb4c6f0d5fe5f0b96f9e29429af39d9 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Wed, 12 Oct 2016 21:19:40 +1100 Subject: [PATCH] Fixed rendering issues with URxvt and XFT fonts, thanks Konimex --- neofetch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neofetch b/neofetch index 20b387d7..691f92a6 100755 --- a/neofetch +++ b/neofetch @@ -1902,7 +1902,7 @@ getcols() { # Add newlines to the string. cols="${cols%%'nl'}" - cols="${cols//nl/\\n${padding}}" + cols="${cols//nl/\\n${padding}​}" fi } @@ -2373,7 +2373,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))" @@ -2408,7 +2408,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))"