How can I make Firefox open magnet-links in Transmission?

206,922

Solution 1

Open up Firefox and its preferences window. Go to the "Applications" tab and you should see "magnet" on the list. Click on "Always ask" and if Transmission does not appear as an option then click on "Use other" and navigate to /usr/bin on your file system. Look for "transmission" or "transmission-gtk" and click that.

Update: Firefox has changed so the above no longer works. Instead, when you click on a magnet link, a "Launch Application" window will appear, from which you can choose to always associate an application (make sure to check the checkbox at the bottom to always use the chosen app). To find the torrent app, choose "file system" on the left side, and then navigate to /usr/bin as described above.

Solution 2

How to set default apps in Chromium / Chrome / Firefox / Ubuntu Linux

Situation: You hate the default app that opens when you double click a file or when you open it with chromium browser and you want to change it.

  1. In Unity (and probably Gnome 3 Shell), some default apps can be changed through gnome-control-center: System settings > System info > Default applications

  2. You can also right-click on a file > select Properties > Open with. See what applications/programs are listed there. You can also add them and set them as default.

  3. If none of the above work, you can use xdg-utils (xdg-mime) to set a default application for a specific Mime Type

First, you have to figure out what text string to use as a "mime type". An easy way to find it is to look into the default application's desktop file.

Example: Chromium opens magnet links and bittorrent files with transmission-gtk by default. You want to use deluge. The .desktop files are usually in folder /usr/share/applications/. We use the cat command to look into the file /usr/share/applications/transmission-gtk (a line that starts with "MimeType"):

$ grep 'MimeType' /usr/share/applications/transmission-gtk.desktop
MimeType=application/x-bittorrent;x-scheme-handler/magnet;

Bingo! x-scheme-handler/magnet and application/x-bittorrent are the mime types we're after.

How to use the xdg-mime command? Simple: xdg-mime default myapp.desktop mymimetype

..where we substitute myapp.desktop and mymimetype with the values from above.

Following the example above, we want magnet links and bittorrent files to open with Deluge (deluge-gtk) application. First you have to install the deluge-gtk package (otherwise the .desktop file won't exist). Then you have to execute:

xdg-mime default deluge.desktop x-scheme-handler/magnet
xdg-mime default deluge.desktop application/x-bittorrent
grep -i deluge ~/.local/share/applications/*

The last command (grep) should return "application/x-bittorrent=deluge.desktop" and the other mime type for magnet. Otherwise, something went wrong (maybe the desktop file didn't exist?).

And that's about it! Close and open chromium-browser again (or logout/login).

For the sake of documentation, the files that have to do with mime types and default apps are:

~/.local/share/applications/defaults.list
~/.local/share/applications/mimeapps.list
~/.local/share/applications/mimeinfo.cache
/usr/share/applications/mimeinfo.cache
/usr/share/applications/mimeapps.list
/usr/share/applications/defaults.list

Solution 3

For me, with transmission-daemon the solution was the following (according to this documentation).

  1. Create an executable file /usr/local/bin/magnet with these commands:

    sudo tee /usr/local/bin/magnet >/dev/null <<EOF
    #!/bin/sh
    exec transmission-remote -n yourTransmissionUserName:YourTransmissionPassword --add "$1"
    EOF
    sudo chmod +x /usr/local/bin/magnet
    
  2. Then go to Firefox preferences (Alt + E + N) and select it after finding the magnet file type on the Applications tab:

    Firefox preferences

Solution 4

I tried a couple of approaches and the only on that worked for me is described here: https://support.mozilla.org/en-US/questions/1012864#answer-609391

All you have to do is to open about:config in Firefox, and add boolean value network.protocol-handler.expose.magnet with value false. The next time you click on a magnet link, you'll be prompted to choose your favorite application to open the link.

I'm using Ubuntu 17.10 and Firefox 56

Share:
206,922

Related videos on Youtube

Esso
Author by

Esso

By day: Working as a consultant for Capra Consulting in Oslo, Norway.

Updated on September 18, 2022

Comments

  • Esso
    Esso almost 2 years

    I can't find out how to make Firefox open magnet-links in Transmission.

    There is no option to make it the standard program for magnet-links in its properties, and as I am not experienced with the filesystem so I can't add it as the standard program in Firefox either.

  • dario_ramos
    dario_ramos over 11 years
    In my case, "magnet" didn't show up in the applications tab, so I had to do this via about:config as explained here
  • Adriano Silva
    Adriano Silva about 10 years
    Thanks! If the magnet does not appear in the list of applications click on any magnet link, choose an application, type "/usr/bin/transmission-gtk". Works on Xubuntu 14!
  • JohnMerlino
    JohnMerlino almost 10 years
    Note in transmission the torrent comes up with a question mark, but it still continues to download. Just discovered this as I download Germany demolish Brazil.
  • user502144
    user502144 over 6 years
    Unfortunately in recent Firefox there is no "magnet" entry in "Applications". Also "Launch Application" window doesn't appear when the link is clicked.
  • michael
    michael over 2 years
    In ubuntu 21.10, try setting firefox > preferences > applications > magnet to "Use System Handler (default)" and see what that does (it obviously depends on the system :-) ). When I tried setting /usr/bin/transmission-gtk as the handler, clicking on magnet links did absolutely nothing. Setting firefox to "use system handler (default)" however did work.