diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-07-04 21:18:43 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-07-04 21:18:43 +0200 |
commit | 5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460 (patch) | |
tree | a4d6d395efb37315cc115b45cac3f8605009c3f5 /kde | |
parent | ab1c264f0015502ddd6dce15ffbc80ef6307773f (diff) | |
download | nutyx-pakxe-5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460.tar.gz nutyx-pakxe-5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460.tar.bz2 nutyx-pakxe-5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460.tar.xz nutyx-pakxe-5fa4c6b7fc0bffb8534ba2bc3d37f730bb9a9460.zip |
kde, suppression de fichiers obsolètes
Diffstat (limited to 'kde')
-rwxr-xr-x | kde/kdebase-workspace/kdm | 33 | ||||
-rwxr-xr-x | kde/kdebase/Xsession | 70 |
2 files changed, 0 insertions, 103 deletions
diff --git a/kde/kdebase-workspace/kdm b/kde/kdebase-workspace/kdm deleted file mode 100755 index 80ab876ba..000000000 --- a/kde/kdebase-workspace/kdm +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -# Begin $rc_base/init.d/xdm - -# $Id: kdm,v 1.4 2008/01/20 22:50:09 install Exp install $ - -. /etc/sysconfig/rc -. $rc_functions -pidfile=/var/run/kdm.pid -case "$1" in - start) - boot_mesg "Starting KDM" - export HOME=/root - cd $HOME - /usr/bin/kdm - ;; - stop) - boot_mesg "Stopping KDM" - if [ -f $pidfile ]; then - kill `cat $pidfile` - rm $pidfile - fi - ;; - restart) - $0 stop - $0 start - ;; - *) - echo "Usage: $0 start|stop|restart" - ;; -esac - -# End of file - diff --git a/kde/kdebase/Xsession b/kde/kdebase/Xsession deleted file mode 100755 index 716ccf01d..000000000 --- a/kde/kdebase/Xsession +++ /dev/null @@ -1,70 +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 - ;; - */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 - - -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/kde/bin/startkde - ;; - *) - eval exec "$session" - ;; -esac -fi -exec xmessage -center -buttons OK:0 -default OK "Sorry, cannot execute $session. Check $DESKTOP_SESSION.desktop." |