From 191a8480b1935b1c51e0ef552d4ee4b11a3882de Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Fri, 22 Dec 2017 23:08:26 +0100 Subject: [PATCH] qutebrowser: Open torrent magnets with ",t" and ",T" --- .config/qutebrowser/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index ca8591f2..df962e64 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -46,6 +46,8 @@ c.url.searchengines = { } config.bind(',v', 'spawn mpv {url}') +config.bind(',t', 'hint links spawn transmission-remote -a {hint-url}') +config.bind(',T', 'hint -r links spawn transmission-remote -a {hint-url}') config.bind('yy', 'yank -s') config.bind('yY', 'yank') config.bind('yd', 'yank -s domain')