blob: e76d3203f8f74da81272ac61f2cebb6aa98ae201 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
AUTOSTART="$HOME/.config/openbox/autostart"
if test -e $AUTOSTART; then
# sleep for 1 second so Openbox is there before anything else
(sleep 1 && . $AUTOSTART) &
fi
exec @bindir@/openbox "$@"
|