Anthony Thyssen <[EMAIL PROTECTED]> writes:
> I do not believe I have seen Kay's solution.
> Can you forward me a copy?
+------------------
| I only needed to say
|
| WINDOW_MANAGER=/usr/local/bin/xmonad
| export WINDOW_MANAGER
|
| in ~/.gnomerc and I got all of the standard Gnome stuff except with a
| different window manager.
+------------------
See also my other reply.
> You will want nautilus, just not the root desktop window.
> Run this command once only, each time you setup a new gnome
> configuration (EG after OS upgrades)...
>
> gconftool-2 -s -t bool /apps/nautilus/preferences/show_desktop false
Okay, that's basically the same as Kay's suggestion that uses
gconf-editor for that.
Since I've modfied the window_manager setting, I now have in my
script:
# Disable Nautilus desktop if we're not using the Gnome WM.
if [[ `gconftool-2 -g /apps/gnome-session/rh/window_manager` =~ "/XStart/" ]]
then
gconftool-2 -s -t bool /apps/nautilus/preferences/show_desktop false
fi
( ~/XStart/ is the directory that contains all my special WM files )
Thanks for all the good suggestions.
-- Johan