14 lines
263 B
Bash
14 lines
263 B
Bash
#!/bin/sh
|
|
|
|
AUTOSTART="$HOME/.config/openbox/autostart.sh"
|
|
GLOBALAUTOSTART="@configdir@/openbox/autostart.sh"
|
|
|
|
if test -e $AUTOSTART; then
|
|
. $AUTOSTART
|
|
else
|
|
if test -e $GLOBALAUTOSTART; then
|
|
. $GLOBALAUTOSTART
|
|
fi
|
|
fi
|
|
|
|
exec @bindir@/openbox "$@"
|