You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
502 B
27 lines
502 B
tdm_start_proc() {
|
|
splashcopy 0 6
|
|
# stop plymouth (bug#775548)
|
|
plymouth_quit
|
|
|
|
return 0
|
|
}
|
|
|
|
tdm_vars() {
|
|
if [ -x /opt/trinity/bin/kdm ]; then
|
|
TDM_BIN=/opt/trinity/bin/kdm
|
|
export KDEROOTHOME=/root/.tdm
|
|
else
|
|
TDM_BIN=/opt/trinity/bin/tdm
|
|
export TDEROOTHOME=/root/.tdm
|
|
fi
|
|
case "${DISPLAYMANAGER##*/}" in
|
|
tdm)
|
|
DISPLAYMANAGER=$TDM_BIN
|
|
STARTPROC=tdm_start_proc
|
|
;;
|
|
*) return 1 ;;
|
|
esac
|
|
return 0
|
|
}
|
|
|