Don't let autostart checking for background-setting tools end up in logs (Fix bug 5186)

This commit is contained in:
Dana Jansens 2012-10-01 00:53:57 -04:00
parent d3a8bab0f0
commit d0ba880668

View file

@ -2,11 +2,11 @@
# Set a background color # Set a background color
BG="" BG=""
if which hsetroot >/dev/null; then if which hsetroot >/dev/null 2>/dev/null; then
BG=hsetroot BG=hsetroot
elif which esetroot >/dev/null; then elif which esetroot >/dev/null 2>/dev/null; then
BG=esetroot BG=esetroot
elif which xsetroot >/dev/null; then elif which xsetroot >/dev/null 2>/dev/null; then
BG=xsetroot BG=xsetroot
fi fi
test -z $BG || $BG -solid "#303030" test -z $BG || $BG -solid "#303030"