2007-05-14 21:58:39 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-05-23 17:59:58 +00:00
|
|
|
if test -n "$1"; then
|
|
|
|
echo "Syntax: openbox-session"
|
|
|
|
echo
|
|
|
|
echo "See the openbox-session(1) manpage for help."
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2009-09-20 13:40:38 +00:00
|
|
|
AUTOSTART="${XDG_CONFIG_HOME:-"$HOME/.config"}/openbox/autostart.sh"
|
2007-05-15 02:02:40 +00:00
|
|
|
GLOBALAUTOSTART="@configdir@/openbox/autostart.sh"
|
2007-05-14 21:58:39 +00:00
|
|
|
|
|
|
|
if test -e $AUTOSTART; then
|
2007-05-16 19:04:48 +00:00
|
|
|
. $AUTOSTART
|
2007-05-15 02:02:40 +00:00
|
|
|
else
|
|
|
|
if test -e $GLOBALAUTOSTART; then
|
2007-05-16 19:04:48 +00:00
|
|
|
. $GLOBALAUTOSTART
|
2007-05-15 02:02:40 +00:00
|
|
|
fi
|
2007-05-14 21:58:39 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
exec @bindir@/openbox "$@"
|