Don't let autostart checking for background-setting tools end up in logs (Fix bug...
authorDana Jansens <danakj@orodu.net>
Mon, 1 Oct 2012 04:53:57 +0000 (00:53 -0400)
committerDana Jansens <danakj@orodu.net>
Sun, 7 Oct 2012 02:30:02 +0000 (22:30 -0400)
data/autostart/openbox-autostart.in

index 063c635..5c72777 100755 (executable)
@@ -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"