[qutebrowser] Integrate org-mode and have properly droppable readability

This commit is contained in:
Sebastian Schulze 2022-01-14 15:50:12 +01:00
parent 85db1cb012
commit a62aefb035
Signed by: bascht
GPG Key ID: 5BCB1D3B4D38A35A
2 changed files with 18 additions and 0 deletions

View File

@ -31,6 +31,15 @@ config.bind(',uu', 'spawn -u untrack-url -O {url}')
config.bind(',uf', 'hint links spawn -u untrack-url -O {hint-url}')
config.bind(',up', 'spawn -u untrack-url -p {clipboard}')
config.bind(',oc', 'spawn --userscript org-capture')
config.bind(',r', 'spawn --userscript readability')
config.bind(',dropr', 'spawn drop /home/bascht/.local/share/qutebrowser/userscripts/readability.html')
config.bind(',gtd', 'quickmark-load todo')
config.bind(',gca', 'quickmark-load calendar')
config.bind(',vu', 'spawn umpv {url}')
config.bind(',vf', 'hint links spawn umpv {hint-url}')
config.bind(',vF', 'hint --rapid links spawn umpv {hint-url}')

View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Send Qutebrowser bookmarks to my Todo file
# Just append and make them due today, so they're in my way before the evening.
DUE=$(date +"<%Y-%M-%d %a>")
DOMAIN=$(echo "${QUTE_URL}" | awk -F/ '{print $3}')
echo -e -n "\n* TODO Bookmark auf ${DOMAIN}: [[${QUTE_URL}][${QUTE_TITLE}]]\nSCHEDULED: ${DUE}" >> ~/Documents/Zettelkasten/Todo.org