Where is "open with..." in Nautilus?

In Ubuntu 11.04 I usually edit my *.fig files by clicking on the icons. The application (script) which opened the file was texfig. This script was chosen by "open with..." in nautilus. But now there is no possibilities to choose other applications than the predefined ones appropriate to the mimetype. How can I define a default application (or a self made script) in nautilus for the x-xfig mimetype?


Solution 1:

You can create a .desktop file that will be listed on 'Open with other application' tab:

  • Navigate to ~/.local/share/applications
  • Create a file called textfig.desktop with these contents:
[Desktop Entry]
Encoding=UTF-8
Name=Textfig
Comment=Edit fig files using custom textfig script
Exec=<path to your script> %u
Terminal=true
Type=Application
Icon=
Categories=Application;Utility;TextEditor;
StartupNotify=true
MimeType=text/plain;
NoDisplay=true

After this you will see Textfig in your Open with other application tab, select it and when you double click the file you will be able to open it using your program.

Just adjust the rest of the values a bit more to fit your needs. The %u will tell nautilus to execute it on the currently selected file.

Solution 2:

For the less technical advanced users you can do this:

  1. Install the Thunar file manager from Xfce desktop environment (it will only install thunar, not the rest of xfce4):

    sudo apt-get install thunar
    

    (Alternatively, you can install the thunar package in the Ubuntu Software Center or the Synaptic Package Manager.)

  2. Open thunar in the Terminal or through the applications menu / GNOME Shell / Unity / whatever and then use the Thunar file manager to set your filetype associations. Nautilus will respect these associations, too, the next time you click on that filetype in Nautilus.

Solution 3:

If you're more GUI minded (like me), go to launchpad PPA and install Ubuntu-Tweak into your software repositories. As far as I and many others are concerned, it should be included in all distribution installation packages.

One of the 'tweaks' is Nautilus, where you can change your file associations as before, including anything in usr/bin.

Check it out at http://ubuntu-tweak.com/.