I know there's a command to let compiz take over from whatever windows manager is running, using compiz --replace &
, same for unity with unity --replace &
. What are the similar commands for other window managers (e.g. KDE4's plasma, Gnome, LXDE, XFCE)? And will this take all running application windows along?
Pretty much any window manager can replace the one currently running. Normally, you use the
--replace
option. Read the window manager's man page for details. You just need to determine the command name for a particular wm. Google orapropos
can help you there.Examples:
Switching wms won't have any effect on which windows are open, though it'll likely affect their placement.
By the way, even though desktop environments such as Gnome, KDE, or Xfce have a default wm that works well with the environment, window managers are actually separate and can normally be mixed and matched. Note, however, that some window managers also provide some other features, such as panels, which you won't have if you switch wms.
Edit
Determing the proper command to use: These kinds of things are really easy to determine for yourself. Just take a guess at the beginning of the name. For example, "open". Then start typing the first few letters and hit Tab. If the name isn't completed, hit Tab a second time to see a list of possible matches. Once you've found the command name, type
man <command_name>
to access documentation.If you can't find the command name that way, look at the process list through some system monitor such as
htop
while the program in question is running. You'll see it there, though you might not be able to use the command in exactly the same form as it's listed, particularly if it's running through an interpreter such as Python.I know it's a while ago -- but as usual, after one stops looking for it, answers pop up. So I just discovered the
fusion-icon
package for Ubuntu: CompizFusionIcon is exactly for this, to switch between different window managers.So in case somebody else is still looking for an easy and convenient solution, this is another option.
The fusion-Icon does no longer work. But: there is another way, how I managed to enable Emald-Window-manager in Xubuntu 13.04.
Step one: we need two terminal-commands
Therefore, we need our Terminal and there we have to enter these commands:
sudo apt-get install git autoconf libtool libwnck1.0-cil-dev libwnck-dev intltool libdecoration0-dev gawk compizconfig-settings-manager
Then follows this command here:
wget cgit.compiz.org/fusion/decorators/emerald/snapshot/emerald-0.9.5.tar.gz
Afterwards follows this command:
tar -zxvf emerald-0.9.5.tar.gz && cd emerald-0.9.5/
This extracts this package to your home-directory (in my case, this was like that).
Then close your Terminal and go to this directory /home //emerald-0.9.5
Step two: run the file autogen-sh in this directory
There search for a file called autogen.sh.
Click this file and let it run. This goes pretty fast.
Then close this file and close your home-directory and go back to the Terminal.
Step three: Cleanout
We again need to open the Terminal and enter these commands:
make clean
make distclean
Then cd to the directory of emerald:
cd /home/<your name>/emerald-0.9.5
Then enter these commands:
./configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} LIBS='-ldl -lm'
make
sudo make install
Then close your Terminal and go to CompizConfig Settings Manager.
Step four: setting Emerald as window-manager
In CompizConfig Settings Manager, go to "general" and there to "Windows-Decoration". There enter the following command:
compiz --replace
Then close CCSM and go to the Emerald-Theme-Manager and select one of your downloaded Themes.
Step five: Finalization of setting Emerald-Theme-manager
open your Terminal and run:
compiz --replace
That's just it.