Topic: Using Nautilus under Openbox
I know Nautilus is probably not the best file manager to use with Openbox, still I figured someone may actually find this useful. Also, sometimes you might need to install Nautilus to accomplish a certain task.
Anyhow, the problem with trying to use Nautilus under Openbox is that it will attempt a hostile takeover of your desktop when it is launched. When it does this, it disables Openbox's right-click menu and also overwrites any desktop wallpapers which have been set using Nitrogen/feh etc.
The solution to this is to place the following gconf commands in your Openbox autostart file, located at ~/.config/openbox/autostart.sh
# Disable Nautilus desktop.
gconftool-2 -s -t bool /apps/nautilus/preferences/show_desktop false &
# Do not let Nautilus set the background image.
gconftool-2 -s -t bool /desktop/gnome/background/draw_background false &I would consider the above two commands essential. The following are less essential, they are just tweaks I like to apply on my own systems:
# Make Nautilus use spatial mode, should start-up quicker.
gconftool-2 -s -t bool /apps/nautilus/preferences/always_use_browser false &
# Make Nautilus show the advanced permissions dialog
gconftool-2 -s -t bool /apps/nautilus/preferences/show_advanced_permissions true &Also, it should probably be stated that you could run these commands through the terminal and they should be persistent through Openbox sessions. However, if you run numerous desktop environments, GNOME, KDE etc. it would make more sense to apply the commands at the beginning of your Openbox session, regardless.
Anyway, I hope someone finds these useful ![]()
