From faf1c7d813a05c834409b6fe30e0cd9b647af40f Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 20 Dec 2016 22:36:54 +1100 Subject: [PATCH] Verbose: Send error messages to stderr --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index 039bdaa8..56d80d18 100755 --- a/neofetch +++ b/neofetch @@ -3357,7 +3357,7 @@ main() { [[ "$scrot" == "on" ]] && take_scrot # Show error messages. - [[ "$verbose" == "on" ]] && printf "%b" "$err" + [[ "$verbose" == "on" ]] && printf "%b" "$err" >&2 return 0 }