> What would be nice is to use KDM so I can choose AfterStep, KDE, or a
> command line. Anyone know how to do this, I tried sifting through the
> xdm man page but that didn't
Yes, definately use KDM because it will pass an argument to it's Xsession
script (xdm doesn't). The argument is just the string from the menu of
choices, so you rewrite Xsession to do something like:
case $# in
1)
case $1 in
failsafe)
exec xterm -geometry 80x24-0-0
;;
default)
default=`cat $HOME/.kdm-default`
exec $0 $default
;;
kde)
echo kde > $HOME/.kdm-default
exec /opt/KDE-1.0/bin/startkde
;;
fvwm)
echo fvwm > $HOME/.kdm-default
;;
esac
esac
# regular code to start fvwm desktop here
_____________________ _ _ _________________________
Michael Rice |_| Collective |_| http://www.colltech.com
[EMAIL PROTECTED] |_ technologies _| 281 267 9270 pager
512 342 6301 Motorola [] [] "The Power Of Many Minds"
---------------------------------------------------------------------------
Send administrative requests to [EMAIL PROTECTED]