0

I am using Centos 7 with gnome3.

I would like to change the default file manager from Nautilus to Thunar.

I followed this : How to change the default filemanager of the Cinnamon desktop? but it's working only for the toolbar at the top. When I double-click a folder in the Desktop, Nautilus is opened.

Do I miss something ?

Alexis
  • 607
  • 1
  • 15
  • 27

1 Answers1

3

To change the default filemanager you can edit the file 

~/.local/share/applications/mimeapps.list

Don't know how to specify thunar but to use nemo over nautilus I do this:

thomas@localhost ~> cat .local/share/applications/mimeapps.list [Added Associations] inode/directory=nemo.desktop; 

Also if you are curious why the wrong filemanager is started if you click on a folder icon check the actual command the starter launches.

After resolving the issues (see comments) you also have to look in the file :

/usr/share/applications/mimeinfo.cache 

there you can change the filemanager also:

inode/directory=nautilus.desktop inode/directory=nemo.desktop*
GAD3R
  • 63,407
  • 31
  • 131
  • 192
Akito
  • 548
  • 1
  • 7
  • 17