From 91b9fae44daf3dc741b156ff4b3f896a31fda58e Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 2 Aug 2016 23:21:49 +1000 Subject: [PATCH] Remove checks for $line_wrap --- neofetch | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index 25a4e7f0..75116e6c 100755 --- a/neofetch +++ b/neofetch @@ -46,6 +46,7 @@ printinfo () { info "CPU" cpu info "GPU" gpu info "Memory" memory + prin "sdddddddddddddddddddddddddddddddddddddasdasdasdasd" # info "CPU Usage" cpu_usage # info "Disk" disk @@ -3345,7 +3346,7 @@ if [ "$image" != "off" ] && [ "$image" != "ascii" ]; then fi # Disable line wrap -[ "$line_wrap" == "off" ] && printf "\033[?7l" +printf "\033[?7l" # Move cursor to the top [ "$image" != "off" ] && printf "\033[0H" @@ -3374,7 +3375,7 @@ esac [ "$image" != "off" ] && printf "%b%s" "\033[${lines:-0}H" # Re-enable line wrap -[ "$line_wrap" == "off" ] && printf "%b%s" "\033[?7h" +printf "%b%s" "\033[?7h" # If enabled take a screenshot if [ "$scrot" == "on" ]; then