Hitnrun
October 21st, 2007, 04:59 PM
compiz is beautiful, but I don't want it. I want my computer fast and reliable.
So I uninstalled compiz, and after restarting I don't get any window decorations.
After some hours of investigation, I found that even after I uninstalled compiz, gdm tries to call it.
Calling gnome-wm, I get:
# gnome-wm
exec: 140: /usr/bin/compiz: not found
Reading the gnome-wm script, I found that there is a gconf key to set this:
/desktop/gnome/applications/window_manager/default
I changed it to metacity and it worked, but this is a per user setting. I don't want to do this for all users.
Looking ahead on the script, I found:
# If not exist, set to compiz.
if [ ! -x "$DEFWM" ]; then
gconftool-2 -s /desktop/gnome/applications/window_manager/default /usr/bin/compiz --type string
DEFWM=/usr/bin/compiz
fi
But I uninstalled compiz how can an script be fixed to a window manager that maybe don't even exists! This is a terrible design decision, totally different from what we are used in linux.
Is there a way to set the default window manager as default to metacity for the whole system?
So I uninstalled compiz, and after restarting I don't get any window decorations.
After some hours of investigation, I found that even after I uninstalled compiz, gdm tries to call it.
Calling gnome-wm, I get:
# gnome-wm
exec: 140: /usr/bin/compiz: not found
Reading the gnome-wm script, I found that there is a gconf key to set this:
/desktop/gnome/applications/window_manager/default
I changed it to metacity and it worked, but this is a per user setting. I don't want to do this for all users.
Looking ahead on the script, I found:
# If not exist, set to compiz.
if [ ! -x "$DEFWM" ]; then
gconftool-2 -s /desktop/gnome/applications/window_manager/default /usr/bin/compiz --type string
DEFWM=/usr/bin/compiz
fi
But I uninstalled compiz how can an script be fixed to a window manager that maybe don't even exists! This is a terrible design decision, totally different from what we are used in linux.
Is there a way to set the default window manager as default to metacity for the whole system?