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-12-10 15:07:50 +00:00
|
|
|
# Clean up after GDM
|
|
|
|
xprop -root -remove _NET_NUMBER_OF_DESKTOPS \
|
|
|
|
-remove _NET_DESKTOP_NAMES \
|
|
|
|
-remove _NET_CURRENT_DESKTOP 2> /dev/null
|
|
|
|
|
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
|
|
|
|
2009-12-09 15:23:00 +00:00
|
|
|
if test -r $AUTOSTART; then
|
2007-05-16 19:04:48 +00:00
|
|
|
. $AUTOSTART
|
2007-05-15 02:02:40 +00:00
|
|
|
else
|
2009-12-09 15:23:00 +00:00
|
|
|
if test -r $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 "$@"
|