Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 1 down vote accepted

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 or apropos can help you there.

Examples:

xfwm --replace   # xfce, I think
metacity --replace   # default wm in Gnome 2
icewm --replace    # old-school wm, my favorite back in the 1990s before modern wms

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.

share|improve this answer
Yes, those restrictions are clear (and further apply to widgets and the like, especially with KDE4s Plasma stuff). Main reason behind my question is to be able switching to a different WM (e.g. when following/writing some Howto) and back again without losing any open apps. Thank you for providing the Gnome WM command, especially. I was especially looking for that one and the KDE4 Plasma thingy -- is that still kwm (and thus kwm --replace)? – Izzy Jul 4 '12 at 13:44
As I never use KDE, I don't know the situation these days. – Scott Severance Jul 4 '12 at 23:56
Trouble is with Plasma I'm no longer sure which one is responsible. There runs a kwin (which I guess must be the right one -- it was the wm in previous versions) plus plasma-desktop process. Not sure which one I'd have to call... Probably kwin. Well, I'll find out. Anyone running LXDE and knows whhich is its wm? I guess it's openbox? – Izzy Jul 5 '12 at 5:48
A DuckDuckGo search took me to the LXDE website, which says that LXDE uses Openbox. – Scott Severance Jul 5 '12 at 11:01
Thanx, yes, I know they're using "OpenBox". My question was more regarding the name of its executable to call for a switch -- and I'm not sure whether that's openbox --replace & for LXDE. I'm just setting up a script handling all the alternatives, so I can just call something like switchwm <new_wm> (the script also checks whether that wm is available and handles that as well). – Izzy Jul 5 '12 at 11:44
show 4 more comments

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.

FusionIcon

So in case somebody else is still looking for an easy and convenient solution, this is another option.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.