]> Dogcows Code - chaz/openbox/blob - data/xsession/openbox-session.in
cc2169f4b6956a00538c8fc779e9fc2e83249296
[chaz/openbox] / data / xsession / openbox-session.in
1 #!/bin/sh
2
3 if test -n "$1"; then
4 echo "Syntax: openbox-session"
5 echo
6 echo "See the openbox-session(1) manpage for help."
7 exit
8 fi
9
10 AUTOSTART="$HOME/.config/openbox/autostart.sh"
11 GLOBALAUTOSTART="@configdir@/openbox/autostart.sh"
12
13 if test -e $AUTOSTART; then
14 . $AUTOSTART
15 else
16 if test -e $GLOBALAUTOSTART; then
17 . $GLOBALAUTOSTART
18 fi
19 fi
20
21 exec @bindir@/openbox "$@"
This page took 0.041117 seconds and 3 git commands to generate.