summaryrefslogtreecommitdiff
path: root/recipes/xserver-common/files
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2009-05-31 11:57:10 +0200
committerKoen Kooi <koen@openembedded.org>2009-05-31 11:57:10 +0200
commit0e6b0d58f40668da496ff0209c93dd444e7b2fa0 (patch)
tree82859083eb393b029ffbcf7ad042aaebe71e2acb /recipes/xserver-common/files
parent83b88a7f144cceb0eb49710206d7172c586efe3c (diff)
xserver-common 1.24: fix xdg autostarting
* it belongs in the xsession, not in the xinit
Diffstat (limited to 'recipes/xserver-common/files')
-rw-r--r--recipes/xserver-common/files/89xdgautostart.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes/xserver-common/files/89xdgautostart.sh b/recipes/xserver-common/files/89xdgautostart.sh
index db7aa229d2..9886f9fee1 100644
--- a/recipes/xserver-common/files/89xdgautostart.sh
+++ b/recipes/xserver-common/files/89xdgautostart.sh
@@ -1,7 +1,9 @@
+#!/bin/sh
+
XDGAUTOSTART=/etc/xdg/autostart
-if [ -d $XDGAUTOSTART ]; then
+if [ -d $XDGAUTOSTART ] ; then
for SCRIPT in $XDGAUTOSTART/*; do
CMD=`grep ^Exec= $SCRIPT | cut -d '=' -f 2`
$CMD &
done
-fi \ No newline at end of file
+fi