summaryrefslogtreecommitdiffstats
path: root/kde3/kdebase3/Xsession
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-09-30 01:00:23 +0200
committertnut <thierryn1 at hispeed dot ch>2010-09-30 01:00:23 +0200
commitaebf0a08c92abe8a7ae4fda812def246b1bf0266 (patch)
treed9cda860a25e94fbe9cd92897aa306e4033f2784 /kde3/kdebase3/Xsession
parent2cca2f0b13750835aa49dd4ec4f1be7d9d11c171 (diff)
downloadnutyx-extra-aebf0a08c92abe8a7ae4fda812def246b1bf0266.tar.gz
nutyx-extra-aebf0a08c92abe8a7ae4fda812def246b1bf0266.tar.bz2
nutyx-extra-aebf0a08c92abe8a7ae4fda812def246b1bf0266.tar.xz
nutyx-extra-aebf0a08c92abe8a7ae4fda812def246b1bf0266.zip
ajout de kdebase3#3.5.10-1
Diffstat (limited to 'kde3/kdebase3/Xsession')
-rwxr-xr-xkde3/kdebase3/Xsession85
1 files changed, 85 insertions, 0 deletions
diff --git a/kde3/kdebase3/Xsession b/kde3/kdebase3/Xsession
new file mode 100755
index 000000000..b96ba5ca9
--- /dev/null
+++ b/kde3/kdebase3/Xsession
@@ -0,0 +1,85 @@
+#! /bin/sh
+# Xsession - run as user
+
+session=$1
+
+# This section is borrowed from the old X11 Xsession file:
+userresources=$HOME/.Xresources
+usermodmap=$HOME/.Xmodmap
+sysresources=/usr/lib/X11/xinit/.Xresources
+sysmodmap=/usr/lib/X11/xinit/.Xmodmap
+# merge in defaults and keymaps
+if [ -r $sysresources ]; then
+ /usr/bin/xrdb -merge $sysresources
+fi
+if [ -r $sysmodmap ]; then
+ /usr/bin/xmodmap $sysmodmap
+fi
+if [ -r $userresources ]; then
+ /usr/bin/xrdb -merge $userresources
+fi
+if [ -r $usermodmap ]; then
+ /usr/bin/xmodmap $usermodmap
+fi
+
+# 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=$HOME/.xsession-env-$DISPLAY
+ $SHELL -c "if (-f /etc/csh.login) source /etc/csh.login; if (-f ~/.login) source ~/.login; /bin/sh -c export >! $xsess_tmp"
+ . $xsess_tmp
+ rm -f $xsess_tmp
+ ;;
+ *) # Plain sh, ksh, and anything we don't know.
+ [ -f /etc/profile ] && . /etc/profile
+ [ -f $HOME/.profile ] && . $HOME/.profile
+ ;;
+esac
+
+[ -f /etc/xprofile ] && . /etc/xprofile
+[ -f $HOME/.xprofile ] && . $HOME/.xprofile
+
+
+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/kde/bin/startkde
+ ;;
+ *)
+ eval exec "$session"
+ ;;
+esac
+exec xmessage -center -buttons OK:0 -default OK "Sorry, cannot execute $session. Check $DESKTOP_SESSION.desktop."