From d0ba8806689ea80b6a739122aaf8dac81d2a3e5c Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 1 Oct 2012 00:53:57 -0400 Subject: [PATCH] Don't let autostart checking for background-setting tools end up in logs (Fix bug 5186) --- data/autostart/openbox-autostart.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/autostart/openbox-autostart.in b/data/autostart/openbox-autostart.in index 063c635..5c72777 100755 --- a/data/autostart/openbox-autostart.in +++ b/data/autostart/openbox-autostart.in @@ -2,11 +2,11 @@ # Set a background color BG="" -if which hsetroot >/dev/null; then +if which hsetroot >/dev/null 2>/dev/null; then BG=hsetroot -elif which esetroot >/dev/null; then +elif which esetroot >/dev/null 2>/dev/null; then BG=esetroot -elif which xsetroot >/dev/null; then +elif which xsetroot >/dev/null 2>/dev/null; then BG=xsetroot fi test -z $BG || $BG -solid "#303030" -- 1.9.1