Since I installed EasyTag on my Arch Linux several other programs use EasyTag instead of Nautilus as filebrowser.
For example, Firefox starts EasyTag if I click on "open containing folder".
Where can I set Nautilus as my "standard file browser"?
Since I installed EasyTag on my Arch Linux several other programs use EasyTag instead of Nautilus as filebrowser.
For example, Firefox starts EasyTag if I click on "open containing folder".
Where can I set Nautilus as my "standard file browser"?
You can define the default file browser by editing the file ~/.local/share/applications/mimeapps.list. Open this file and change the line inode/directory as follow
inode/directory=nautilus.desktop;
If this doesn't work, you should change the filemanager in the file
/usr/share/applications/mimeinfo.cache
by adding (or updating) this line
inode/directory=nautilus.desktop
The following command solved this problem in arch linux:
xdg-mime default nautilus.desktop inode/directory
(Source: Arch Forums)
You can find a comprehensive description of setting up default applications here in the according Arch wiki article.
For your specific case, you edit ~/.config/mimeapps.list and add a new line with inode/directory=nautilus.desktop to the section [Default Applications].
The file should look similar to the following one:
[Default Applications]
text/plain=SciTE.desktop
text/x-tex=texmaker.desktop
inode/directory=nautilus.desktop
Use env XDG_UTILS_DEBUG_LEVEL=10 xdg-mime query default inode/directory to get the full list of queried files. You'll get an output like this:
Checking ~/.config/mimeapps.list
Checking ~/.local/share/applications/gnome-defaults.list and ~/.local/share/applications/gnome-mimeinfo.cache
Checking ~/.local/share/applications/defaults.list and ~/.local/applications/mimeinfo.cache
nautilus.desktop
Check each of these files.