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.
22 lines
378 B
22 lines
378 B
12 years ago
|
tdm_start_proc() {
|
||
|
splashcopy 0 6
|
||
|
# stop plymouth (bug#775548)
|
||
|
plymouth_quit
|
||
|
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
tdm_vars() {
|
||
|
TDM_BIN=/opt/trinity/bin/kdm
|
||
|
case "${DISPLAYMANAGER##*/}" in
|
||
|
tdm)
|
||
|
export KDEROOTHOME=/root/.kdm
|
||
|
DISPLAYMANAGER=$TDM_BIN
|
||
|
STARTPROC=tdm_start_proc
|
||
|
;;
|
||
|
*) return 1 ;;
|
||
|
esac
|
||
|
return 0
|
||
|
}
|
||
|
|