Adding qutebrowser userscripts.

This commit is contained in:
Derek Taylor 2020-11-05 13:35:22 -06:00
parent a7fdaf7f8c
commit d9b33f1b34
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/bin/bash
url=$({
cat "$QUTE_CONFIG_DIR"/bookmarks/urls
awk '{ tmp = $1; $1 = $2; $2 = tmp; print $0 }' "$QUTE_CONFIG_DIR"/quickmarks
sqlite3 -separator ' ' "$QUTE_DATA_DIR"/history.sqlite 'SELECT url, title FROM CompletionHistory'
} | dmenu -l 10 -p "open $* " | cut -d ' ' -f 1)
if [ $? = 0 ] && [ -n "$url" ]; then
printf 'open %s %s\n' "$*" "$url" >>"$QUTE_FIFO"
fi