From b20e011b669afe16b386c80e6c79fdbe6825107b Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 8 Jul 2022 22:25:38 +0200 Subject: [PATCH] qutebrowser: Remove outline readability alias Removed alias to invoke sending a page to outline to make it more readable. Two reasons: First, outline seems gone. The website is hogged by advertisements. Second, when I really need a page in readability mode, I can just send it to my personal wallabag instance and as a bonus even get it archived automatically. --- qutebrowser/.config/qutebrowser/alias.py | 3 --- qutebrowser/.config/qutebrowser/maps.py | 1 - 2 files changed, 4 deletions(-) diff --git a/qutebrowser/.config/qutebrowser/alias.py b/qutebrowser/.config/qutebrowser/alias.py index 60c6a18..0968d5a 100644 --- a/qutebrowser/.config/qutebrowser/alias.py +++ b/qutebrowser/.config/qutebrowser/alias.py @@ -14,9 +14,6 @@ c.aliases["add-shaarli"] = "spawn --userscript shaarli_add.sh" # re-opens the current page on the web archive overview page c.aliases["send-to-archive"] = "open https://web.archive.org/web/{url}" -# sends current page to outline and thus through readability mode -c.aliases["send-to-outline"] = "open https://outline.com/{url}" - # save current page to pdf file c.aliases["save_to_pdf"] = "spawn --userscript pagetopdf.sh" diff --git a/qutebrowser/.config/qutebrowser/maps.py b/qutebrowser/.config/qutebrowser/maps.py index 56061d3..6c09877 100644 --- a/qutebrowser/.config/qutebrowser/maps.py +++ b/qutebrowser/.config/qutebrowser/maps.py @@ -68,7 +68,6 @@ config.bind(";w", "hint links userscript wallabag_add.sh") # add link to wallab config.bind('"s', "add-shaarli", mode="normal") config.bind('"a', "send-to-archive", mode="normal") -config.bind('"o', "send-to-outline", mode="normal") config.bind('"t', "translate-page-google", mode="normal") config.bind('"T', "translate-selection-google", mode="normal")