]> Dogcows Code - chaz/openbox/blobdiff - data/xsession/openbox-session.in
Respect $XDG_CONFIG_HOME in openbox-session
[chaz/openbox] / data / xsession / openbox-session.in
index c466f17de26f908b975dab24a968d6ea88ca5f57..259dc580cd594331b4dce946995fa3aaba3c0bcd 100644 (file)
@@ -1,15 +1,20 @@
 #!/bin/sh
 
-AUTOSTART="$HOME/.config/openbox/autostart.sh"
+if test -n "$1"; then
+    echo "Syntax: openbox-session"
+    echo
+    echo "See the openbox-session(1) manpage for help."
+  exit
+fi
+
+AUTOSTART="${XDG_CONFIG_HOME:-"$HOME/.config"}/openbox/autostart.sh"
 GLOBALAUTOSTART="@configdir@/openbox/autostart.sh"
 
 if test -e $AUTOSTART; then
-    # sleep for 1 second so Openbox is there before anything else
-    (sleep 1 && . $AUTOSTART) &
+    . $AUTOSTART
 else
     if test -e $GLOBALAUTOSTART; then
-        # sleep for 1 second so Openbox is there before anything else
-        (sleep 1 && . $GLOBALAUTOSTART) &
+        . $GLOBALAUTOSTART
     fi
 fi
 
This page took 0.021928 seconds and 4 git commands to generate.