diff --git a/neofetch b/neofetch index 0f511fdb..655b873b 100755 --- a/neofetch +++ b/neofetch @@ -2481,12 +2481,6 @@ info() { # Calculate info height info_height="$((info_height+=1))" - - # Fix rendering issues with w3m and lines that - # wrap to the next line by adding a max line - # length. - [[ "$image_backend" == "image" ]] && \ - string="$(printf "%.$((columns - text_padding - gap))s" "$string")" } prin() { @@ -2508,12 +2502,6 @@ prin() { # Calculate info height info_height="$((info_height+=1))" - # Fix rendering issues with w3m and lines that - # wrap to the next line by adding a max line - # length. - [[ "$image_backend" == "image" ]] && \ - string="$(printf "%.$((columns - text_padding - gap))s" "$string")" - # Tell info() that prin() was used. prin=1 }