2007-05-14 21:58:39 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-05-15 02:02:40 +00:00
|
|
|
AUTOSTART="$HOME/.config/openbox/autostart.sh"
|
|
|
|
GLOBALAUTOSTART="@configdir@/openbox/autostart.sh"
|
2007-05-14 21:58:39 +00:00
|
|
|
|
|
|
|
if test -e $AUTOSTART; then
|
|
|
|
# sleep for 1 second so Openbox is there before anything else
|
|
|
|
(sleep 1 && . $AUTOSTART) &
|
2007-05-15 02:02:40 +00:00
|
|
|
else
|
|
|
|
if test -e $GLOBALAUTOSTART; then
|
|
|
|
# sleep for 1 second so Openbox is there before anything else
|
|
|
|
(sleep 1 && . $GLOBALAUTOSTART) &
|
|
|
|
fi
|
2007-05-14 21:58:39 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
exec @bindir@/openbox "$@"
|