Marty Oehme
b20e011b66
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.
30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
c.aliases["gem"] = "hint links userscript qute-gemini"
|
|
|
|
# Use q for quitting a tab (mimicks vim buffer) - qa is used for exiting
|
|
c.aliases["q"] = "tab-close"
|
|
# if we save sessions with w, load sessions with e (again, mimicks vim)
|
|
c.aliases["e"] = "session-load"
|
|
|
|
# wallabag add current page, either with walla command, or <leader>bw
|
|
c.aliases["add-wallabag"] = "spawn --userscript wallabag_add.sh"
|
|
|
|
# add to (my) shaarli instance
|
|
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}"
|
|
|
|
# save current page to pdf file
|
|
c.aliases["save_to_pdf"] = "spawn --userscript pagetopdf.sh"
|
|
|
|
# translate current page / selection with google translate
|
|
c.aliases["translate-page-google"] = "spawn --userscript translate_google.sh"
|
|
c.aliases[
|
|
"translate-selection-google"
|
|
] = "spawn --userscript translate_google.sh --text"
|
|
|
|
# print picture of current url as qr code
|
|
c.aliases["show-qr"] = "spawn --userscript qr"
|
|
|
|
# add a task of current page to taskwarrior
|
|
c.aliases["taskadd"] = "spawn --userscript taskadd"
|