diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-12-02 15:14:50 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-12-02 15:14:50 +0100 |
commit | c725dd1dd684be0c61ad1035a778601369942f60 (patch) | |
tree | 8a36becd6b51453f5dc6c13bbfc2897720dad19b /gentoo/trinity-base/kdm/files/kdm-3.5.13.2-xsession.script | |
parent | 652dadf08b1c2bc4f8bc673e47b27ebbe91487cd (diff) | |
download | tde-packaging-c725dd1dd684be0c61ad1035a778601369942f60.tar.gz tde-packaging-c725dd1dd684be0c61ad1035a778601369942f60.zip |
Gentoo: Files moved to a separate git repository.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'gentoo/trinity-base/kdm/files/kdm-3.5.13.2-xsession.script')
m--------- | gentoo | 0 | ||||
-rwxr-xr-x | gentoo/trinity-base/kdm/files/kdm-3.5.13.2-xsession.script | 66 |
2 files changed, 0 insertions, 66 deletions
diff --git a/gentoo b/gentoo new file mode 160000 +Subproject 644110a847c5911c2eb04eb53c93031740561ef diff --git a/gentoo/trinity-base/kdm/files/kdm-3.5.13.2-xsession.script b/gentoo/trinity-base/kdm/files/kdm-3.5.13.2-xsession.script deleted file mode 100755 index 3106eea99..000000000 --- a/gentoo/trinity-base/kdm/files/kdm-3.5.13.2-xsession.script +++ /dev/null @@ -1,66 +0,0 @@ -#! /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 - setopt shwordsplit noextendedglob - ;; - */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 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 /bin/sh $HOME/.xsession - ;; - default) - exec /usr/trinity/3.5/bin/starttde - ;; - *) - eval exec "$session" - ;; -esac -exec xmessage -center -buttons OK:0 -default OK "Sorry, cannot execute $session. Check $DESKTOP_SESSION.desktop." |