qutebrowser: Add sending to outline command
Added a command to send the current page to the outline service, which acts as a readability layer (and lets you read e.g. medium articles without pulling your hair out). Just use the `send-to-outline` command, or use keymapping <leader>bo to send the current page to outline.
This commit is contained in:
parent
72455c22e0
commit
d71e4a19fb
1 changed files with 6 additions and 2 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue