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.
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.
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.
In Unity (and probably Gnome 3 Shell), some default apps can be changed through
gnome-control-center
: System settings > System info > Default applicationsYou 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.
If none of the above work, you can use
xdg-utils
(xdg-mime
) to set a default application for a specific Mime TypeFirst, 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 thecat
command to look into the file/usr/share/applications/transmission-gtk
(a line that starts with "MimeType"):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 thedeluge-gtk
package (otherwise the .desktop file won't exist). Then you have to execute: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:
For me, with transmission-daemon the solution was the following (according to this documentation).
Create an executable file
/usr/local/bin/magnet
with these commands:Then go to Firefox preferences (Alt + E + N) and select it after finding the magnet file type on the Applications tab:
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 valuefalse
. 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
For a solution that worked for me:
https://support.mozilla.org/en-US/questions/965921
"Click on the help menu and select "Restart with Add-ons Disabled" and then select the reset option in the dialog box."
Follow the on-screen prompts. Then restart Firefox.
When you click on a magnet link the usual "Choose a program" type of dialog box appears. Browse for /usr/bin/transmission-gtk
Works in Ubuntu 13.04
If you use Transmission for torrents the only thing you must do is when the window opens and ask you with which program you want that Firefox open magnet links with, you drag & drop the transmission icon from your side bar in the Firefox dialog box and that's all. I have Ubuntu 14.04 (Trusty Tahr), and it works fine.