From d83f6471d74a4a485d4dff74cc2cefa39ba3a6c0 Mon Sep 17 00:00:00 2001 From: inxi-svn Date: Fri, 27 May 2011 20:55:15 +0000 Subject: [PATCH] had to redirect error output to 1 --- inxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inxi b/inxi index 7240133..bf391f8 100755 --- a/inxi +++ b/inxi @@ -2867,7 +2867,7 @@ get_de_version() # note, some wm send version info to stderr instead of stdout case $1 in dwm|scrotwm) - version_data="$( $1 $get_version )" + version_data="$( $1 $get_version 2>&1 )" ;; *) version_data="$( $1 $get_version 2>/dev/null )"