summaryrefslogtreecommitdiffstats
path: root/kde/kdebase-workspace/Xsession.kde4
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-23 21:01:36 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-23 21:01:36 +0200
commitb912c395f22ebeafb6275ae40960343f5809932f (patch)
treeff38012773bcc333bf9cf8bf132f59bce01080f8 /kde/kdebase-workspace/Xsession.kde4
parentd7f84daa9945feaf7faa34e650944ad461c2d9cd (diff)
downloadnutyx-extra-b912c395f22ebeafb6275ae40960343f5809932f.tar.gz
nutyx-extra-b912c395f22ebeafb6275ae40960343f5809932f.tar.bz2
nutyx-extra-b912c395f22ebeafb6275ae40960343f5809932f.tar.xz
nutyx-extra-b912c395f22ebeafb6275ae40960343f5809932f.zip
Ajout de kdebase-workspace#4.3.0-1
Diffstat (limited to 'kde/kdebase-workspace/Xsession.kde4')
-rwxr-xr-xkde/kdebase-workspace/Xsession.kde471
1 files changed, 71 insertions, 0 deletions
diff --git a/kde/kdebase-workspace/Xsession.kde4 b/kde/kdebase-workspace/Xsession.kde4
new file mode 100755
index 000000000..742344b9b
--- /dev/null
+++ b/kde/kdebase-workspace/Xsession.kde4
@@ -0,0 +1,71 @@
+#! /bin/sh
+# Xsession - run as user
+
+session=$1
+
+# Note that the respective logout scripts are not sourced.
+case $SHELL in
+ */bash)
+ [ -z "$BASH" ] && exec $SHELL $0 "$@"
+ set +o posix
+ [ -f /etc/profile ] && . /etc/profile
+ if [ -f $HOME/.bash_profile ]; then
+ . $HOME/.bash_profile
+ elif [ -f $HOME/.bash_login ]; then
+ . $HOME/.bash_login
+ elif [ -f $HOME/.profile ]; then
+ . $HOME/.profile
+ fi
+ ;;
+ */zsh)
+ [ -z "$ZSH_NAME" ] && exec $SHELL $0 "$@"
+ emulate -R zsh
+ [ -d /etc/zsh ] && zdir=/etc/zsh || zdir=/etc
+ zhome=${ZDOTDIR:-$HOME}
+ # zshenv is always sourced automatically.
+ [ -f $zdir/zprofile ] && . $zdir/zprofile
+ [ -f $zhome/.zprofile ] && . $zhome/.zprofile
+ [ -f $zdir/zlogin ] && . $zdir/zlogin
+ [ -f $zhome/.zlogin ] && . $zhome/.zlogin
+ ;;
+ */csh|*/tcsh)
+ # [t]cshrc is always sourced automatically.
+ # Note that sourcing csh.login after .cshrc is non-standard.
+ xsess_tmp=`mktemp /tmp/xsess-env-XXXXXX`
+ $SHELL -c "if (-f /etc/csh.login) source /etc/csh.login; if (-f ~/.login) source ~/.login; /bin/sh -c export -p >! $xsess_tmp"
+ . $xsess_tmp
+ rm -f $xsess_tmp
+ ;;
+ *) # Plain sh, ksh, and anything we do not know.
+ [ -f /etc/profile ] && . /etc/profile
+ [ -f $HOME/.profile ] && . $HOME/.profile
+ ;;
+esac
+
+[ -f /etc/xprofile ] && . /etc/xprofile
+[ -f $HOME/.xprofile ] && . $HOME/.xprofile
+
+if [ "$UID" = "0" ]; then
+ exec /usr/bin/startede
+else
+
+
+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/kde4/bin/startkde
+ ;;
+ *)
+ eval exec "$session"
+ ;;
+esac
+fi
+exec xmessage -center -buttons OK:0 -default OK "Sorry, cannot execute $session. Check $DESKTOP_SESSION.desktop."