How to fix Firefox “Show Downloads Folder” after installing Git Cola
After installing Git Cola specially in Arch Linux whenever you press the “Show Downloads Folder” in Downloads Library or “Open Containing Folder” in Downloads popup Git Cola pops up instead of the default file manager. This happens because of MIME edits that Git Cola does whole installing. Anyway is very easy to fix, just follow these steps
- Open up Terminal and type
sudo nano /usr/share/applications/mimeinfo.cache
- Search for
inode/directory
- Remove
git-cola-folder-handler.desktop;
frominode/directory=git-cola-folder-handler.desktop;Thunar-folder-handler.desktop;
Thunar-folder-handler.desktop;
this part means that from now on directories will open using Thunar. Yours might be different so just remove thegit-cola-folder-handler.desktop;
part and you will be fine.
0 Comments