TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [TCLUG:6891] Red Hat 6.0
You will need to set the /etc/sysconfig/desktop variable according to the
desired Window environment. I have never tried it, but /etc/X11/Xclients
says that's where it grabs its default WM:
$ cat /etc/X11/Xclients
#!/bin/bash
# (c) 1999 Red Hat Software, Inc.
# check to see if the user has a preferred desktop
PREFERRED=
if [ -f /etc/sysconfig/desktop ]; then
if [ -n "`grep -i GNOME /etc/sysconfig/desktop`" ]; then
PREFERRED=gnome-session
elif [ -n "`grep -i KDE /etc/sysconfig/desktop`" ]; then
PREFERRED=startkde
elif [ -n "`grep -i AnotherLevel /etc/sysconfig/desktop`" ]; then
PREFERRED=AnotherLevel
fi
fi
if [ -n "$PREFERRED" -a "$PREFERRED" != "AnotherLevel" ] && \
which $PREFERRED >/dev/null 2>&1; then
PREFERRED=`which $PREFERRED`
exec $PREFERRED
fi
# now if we can reach here, either they want AnotherLevel or there was
# no desktop file present and the PREFERRED variable is not set.
Peter Lukas
On Thu, 8 Jul 1999, Steven Rogerman wrote:
> I have installed Redhat 6.0, The question I have is how do I change the default
> desktop from GNOME to KDE so that user do not have to select KDE every time
> they log in, Thank you
> Steve.
>
> steven.rogerman@ftlsys.com
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tclug-list-unsubscribe@mn-linux.org
> For additional commands, e-mail: tclug-list-help@mn-linux.org
>
>
- References:
- Red Hat 6.0
- From: Steven Rogerman <steven.rogerman@postman.ftlsys.com>