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
12 years ago
|
tdm_start_proc() {
|
||
|
splashcopy 0 6
|
||
|
# stop plymouth (bug#775548)
|
||
|
plymouth_quit
|
||
|
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
tdm_vars() {
|
||
11 years ago
|
if [ -x /opt/trinity/bin/kdm ]; then
|
||
11 years ago
|
TDM_BIN=/opt/trinity/bin/kdm
|
||
|
export KDEROOTHOME=/root/.tdm
|
||
|
else
|
||
|
TDM_BIN=/opt/trinity/bin/tdm
|
||
|
export TDEROOTHOME=/root/.tdm
|
||
|
fi
|
||
12 years ago
|
case "${DISPLAYMANAGER##*/}" in
|
||
|
tdm)
|
||
|
DISPLAYMANAGER=$TDM_BIN
|
||
|
STARTPROC=tdm_start_proc
|
||
|
;;
|
||
|
*) return 1 ;;
|
||
|
esac
|
||
|
return 0
|
||
|
}
|
||
|
|