After I installed Cinnamon, Nemo automatically installed itself, and now Nemo is default file browser. How can I revert to Nautilus.
After I installed Cinnamon, Nemo automatically installed itself, and now Nemo is default file browser. How can I revert to Nautilus.
There are numerous ways to accomplish this.
Try running
exo-preferred-applications
from the terminal(Ctrl+Alt+t ). You should see an option to change your file manager on the 2nd tab named "Utilities".Using
xdg-mime
, You could also run the following command to determine your current default file manager:xdg-mime query default inode/directory
This should return
nemo.desktop
as a result.In order to change this, run:
xdg-mime default nautilus.desktop inode/directory application
~/.local/share/applications/mimeapps.list
inode/directory=nemo.desktop;
inode/directory=nautilus.desktop;