diff options
Diffstat (limited to 'meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch')
-rw-r--r-- | meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch b/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch new file mode 100644 index 0000000000..1782665b24 --- /dev/null +++ b/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0005-add-XWindowManager-Xsession.d-script.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | From b01a532ebb525552e23d7169a2aeb55c42b3ec99 Mon Sep 17 00:00:00 2001 | ||
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
3 | Date: Wed, 11 Apr 2012 14:32:13 +0200 | ||
4 | Subject: [PATCH 05/12] add XWindowManager Xsession.d script | ||
5 | |||
6 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
7 | --- | ||
8 | X11/Xsession.d/90xXWindowManager | 6 ++++++ | ||
9 | 1 files changed, 6 insertions(+), 0 deletions(-) | ||
10 | create mode 100644 X11/Xsession.d/90xXWindowManager | ||
11 | |||
12 | Index: xserver-common-1.34/X11/Xsession.d/90xXWindowManager | ||
13 | =================================================================== | ||
14 | --- /dev/null 1970-01-01 00:00:00.000000000 +0000 | ||
15 | +++ xserver-common-1.34/X11/Xsession.d/90xXWindowManager 2012-06-28 15:02:22.010521773 +0200 | ||
16 | @@ -0,0 +1,7 @@ | ||
17 | +if [ -x $HOME/.Xsession ]; then | ||
18 | + exec $HOME/.Xsession | ||
19 | +elif [ -x /usr/bin/x-session-manager ]; then | ||
20 | + exec /usr/bin/x-session-manager | ||
21 | +else | ||
22 | + exec /usr/bin/x-window-manager | ||
23 | +fi | ||