diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index f048091..672d580 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -121,8 +121,11 @@ config.bind(leader + "bw", "add-wallabag", mode="normal") c.aliases["add-shaarli"] = "spawn --userscript shaarli_add.sh" config.bind(leader + "bs", "add-shaarli", mode="normal") # re-opens the current page on the web archive overview page -c.aliases["archive-open"] = "open https://web.archive.org/web/{url}" -config.bind(leader + "ba", "archive-open", mode="normal") +c.aliases["send-to-archive"] = "open https://web.archive.org/web/{url}" +config.bind(leader + "ba", "send-to-archive", mode="normal") +# sends current page to outline and thus through readability mode +c.aliases["send-to-outline"] = "open https://outline.com/{url}" +config.bind(leader + "bo", "send-to-outline", mode="normal") # translate current page / selection with google translate c.aliases["translate-page"] = "spawn --userscript translate_google.sh" c.aliases["translate-selection"] = "spawn --userscript translate_google.sh --text" @@ -176,4 +179,5 @@ c.url.searchengines = { } # give the browser nice theme colors + config.source("colorscheme.py")