blob: 7f663ae49c561a5f32e6b2d2df634caa27e26864 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
--- openbox-3.4.11.1/data/autostart.sh.in 2010-03-14 09:40:37.000000000 -0500
+++ openbox-3.4.11.1/data/autostart.sh.in 2010-03-26 14:44:36.000000000 -0500
@@ -3,13 +3,13 @@
# Set a background color
BG=""
-if which hsetroot >/dev/null; then
+if which hsetroot >/dev/null 2>&1; then
BG=hsetroot
else
- if which esetroot >/dev/null; then
+ if which esetroot >/dev/null 2>&1; then
BG=esetroot
else
- if which xsetroot >/dev/null; then
+ if which xsetroot >/dev/null 2>&1; then
BG=xsetroot
fi
fi
@@ -17,28 +17,28 @@
test -z $BG || $BG -solid "#303030"
# D-bus
-if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
+if which dbus-launch >/dev/null 2>&1 && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
eval `dbus-launch --sh-syntax --exit-with-session`
fi
# Make GTK apps look and behave how they were set up in the gnome config tools
if test -x @libexecdir@/gnome-settings-daemon >/dev/null; then
@libexecdir@/gnome-settings-daemon &
-elif which gnome-settings-daemon >/dev/null; then
+elif which gnome-settings-daemon >/dev/null 2>&1; then
gnome-settings-daemon &
# Make GTK apps look and behave how they were set up in the XFCE config tools
-elif which xfce-mcs-manager >/dev/null; then
+elif which xfce-mcs-manager >/dev/null 2>&1; then
xfce-mcs-manager n &
fi
# Preload stuff for KDE apps
-if which start_kdeinit >/dev/null; then
+if which start_kdeinit >/dev/null 2>&1; then
LD_BIND_NOW=true start_kdeinit --new-startup +kcminit_startup &
fi
# Run XDG autostart things. By default don't run anything desktop-specific
# See xdg-autostart --help more info
DESKTOP_ENV="OPENBOX"
-if which @secretbindir@/xdg-autostart >/dev/null; then
+if which @secretbindir@/xdg-autostart >/dev/null 2>&1; then
@secretbindir@/xdg-autostart $DESKTOP_ENV
fi
|