Launching nautilus file browser launches gnome desktop, how to suppress it

gnome3i3nautilus

Currently I'm using i3 window manager (but I guess that this applies to other non-standard window managers as well). Whenever I run nautilus it also starts a full screen desktop, which I have to close.

Possible solution is to start nautilus with: nautilus --browser --no-desktop, which solves this problem only partially, as sometimes nautilus is launched automatically by other applications and in this case it would be launched without --browser --no-desktop options.

Is there any gnome3 config option that allows me to suppress desktop launching?

Best Answer

Yes, there is a dconf value that controls this. Run the following command to disable drawing of the desktop by Nautilus:

gsettings set org.gnome.desktop.background show-desktop-icons false

Source: https://askubuntu.com/a/237984/81372

Related Question