summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0003-add-89xdgautostart-Xsession.d-script.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0003-add-89xdgautostart-Xsession.d-script.patch')
-rw-r--r--meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0003-add-89xdgautostart-Xsession.d-script.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0003-add-89xdgautostart-Xsession.d-script.patch b/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0003-add-89xdgautostart-Xsession.d-script.patch
new file mode 100644
index 000000000..bf806a991
--- /dev/null
+++ b/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0003-add-89xdgautostart-Xsession.d-script.patch
@@ -0,0 +1,29 @@
1From a93a86c2ff1ca5eb35615f4e1568409ff342aa7f Mon Sep 17 00:00:00 2001
2From: Martin Jansa <Martin.Jansa@gmail.com>
3Date: Wed, 11 Apr 2012 14:29:41 +0200
4Subject: [PATCH 03/12] add 89xdgautostart Xsession.d script
5
6Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
7---
8 X11/Xsession.d/89xdgautostart | 9 +++++++++
9 1 files changed, 9 insertions(+), 0 deletions(-)
10 create mode 100644 X11/Xsession.d/89xdgautostart
11
12diff --git a/X11/Xsession.d/89xdgautostart b/X11/Xsession.d/89xdgautostart
13new file mode 100644
14index 0000000..9886f9f
15--- /dev/null
16+++ b/X11/Xsession.d/89xdgautostart
17@@ -0,0 +1,9 @@
18+#!/bin/sh
19+
20+XDGAUTOSTART=/etc/xdg/autostart
21+if [ -d $XDGAUTOSTART ] ; then
22+ for SCRIPT in $XDGAUTOSTART/*; do
23+ CMD=`grep ^Exec= $SCRIPT | cut -d '=' -f 2`
24+ $CMD &
25+ done
26+fi
27--
281.7.8.5
29