Nautilus Xmonad – How to Open Nautilus Without a Desktop

nautilusxmonad

I'm using xmonad, and I would like to open a nautilus window to a certain directory, because I like the convenience of browsing inside an encrypted zip file without unzipping it, which nautilus allows.

however, opening nautilus, even with a path argument starts a desktop on the monitor I'm using (There are 8 xmonad monitors) The desktop is inoperative and renders that monitor useless until nautilus is killed.

Is there any way to open just a nautilus window without any desktop starting?

Best Answer

Execute nautilus with:

nautilus --no-desktop &

You can change the launcher accordingly or create a new one for your purpose.

Edit: Added ampersand so that the process is run in the background. (Props to @user117123)

Related Question