all repos — openbox @ d0ba8806689ea80b6a739122aaf8dac81d2a3e5c

openbox fork - make it a bit more like ryudo

Don't let autostart checking for background-setting tools end up in logs (Fix bug 5186)
Dana Jansens danakj@orodu.net
commit

d0ba8806689ea80b6a739122aaf8dac81d2a3e5c

parent

d3a8bab0f09e6a77a98e3c54fe5a57966bb0d636

1 files changed, 3 insertions(+), 3 deletions(-)

jump to
M data/autostart/openbox-autostart.indata/autostart/openbox-autostart.in

@@ -2,11 +2,11 @@ #!/bin/sh

# 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"