]> Dogcows Code - chaz/openbox/commitdiff
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 063c635feb39c78767d8826c56eb01a14c6c746b..5c7277740396c9cf92a6fc6a1a316324f867f043 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"
This page took 0.020664 seconds and 4 git commands to generate.