summaryrefslogtreecommitdiffstats
path: root/arch/tde-core/tde-tdebase/xsession.patch
diff options
context:
space:
mode:
Diffstat (limited to 'arch/tde-core/tde-tdebase/xsession.patch')
-rw-r--r--arch/tde-core/tde-tdebase/xsession.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/arch/tde-core/tde-tdebase/xsession.patch b/arch/tde-core/tde-tdebase/xsession.patch
new file mode 100644
index 000000000..8084fda40
--- /dev/null
+++ b/arch/tde-core/tde-tdebase/xsession.patch
@@ -0,0 +1,28 @@
+--- /mnt/archlinux/opt/trinity/share/config/kdm/Xsession 2011-12-08 13:08:43.000000000 +0100
++++ /opt/trinity/share/config/tdm/Xsession 2011-09-24 14:52:28.000000000 +0200
+@@ -43,4 +43,24 @@
+ ;;
+ esac
+ # invoke global X session script
+-. /etc/X11/Xsession
++
++
++ case $session in
++ "")
++ exec xmessage -center -buttons OK:0 -default OK "Sorry, $DESKTOP_SESSION is no valid session."
++ ;;
++ failsafe)
++ exec xterm -geometry 80x24-0-0
++ ;;
++ custom)
++ exec $HOME/.xsession
++ ;;
++ default)
++ exec /opt/trinity/bin/starttde
++ ;;
++ *)
++ eval exec "$session"
++ ;;
++ esac
++ exec xmessage -center -buttons OK:0 -default OK "Sorry, cannot execute $session. Check $DESKTOP_SESSION.desktop."
++