Initial commit.
This commit is contained in:
commit
fb9d04b7ef
28 changed files with 2359 additions and 0 deletions
74
.config/qutebrowser/userscripts/buku
Executable file
74
.config/qutebrowser/userscripts/buku
Executable file
|
@ -0,0 +1,74 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Qutebrowser userscript for interacting with buku
|
||||
# requries buku and dmenu (with list patch)
|
||||
|
||||
get_bookmark() {
|
||||
buku --nostdin -p -f5 | sed 's/\t/;/g' | column -t -s ';' | dmenu -p "$1 bookmark: " -i -l 10 | awk '{ print $1 }'
|
||||
}
|
||||
|
||||
get_url() {
|
||||
buku --nostdin -p "$1" -f10
|
||||
}
|
||||
|
||||
get_title() {
|
||||
buku --nostdin -p "$1" -f30
|
||||
}
|
||||
|
||||
fifo() {
|
||||
printf '%s\n' "$1" >>"$QUTE_FIFO"
|
||||
}
|
||||
|
||||
add() {
|
||||
buku --nostdin -a "$QUTE_URL"
|
||||
$TERMINAL --class badd,badd -e buku -w -1
|
||||
fifo "message-info 'Added current url to buku'"
|
||||
}
|
||||
|
||||
open() {
|
||||
bookmark=$(get_bookmark "Open")
|
||||
[ -z "$bookmark" ] && fifo "message-info 'No Bookmark selected!!!'" && exit
|
||||
if [ "$1" == "-t" ]; then
|
||||
fifo "open -t $(get_url "$bookmark")"
|
||||
fifo "message-info 'Opening bookmark $(get_title "$bookmark") in new tab.'"
|
||||
else
|
||||
fifo "open $(get_url "$bookmark")"
|
||||
fifo "message-info 'Opening bookmark $(get_title "$bookmark").'"
|
||||
fi
|
||||
}
|
||||
|
||||
delete() {
|
||||
bookmark=$(get_bookmark "Delete")
|
||||
title=$(get_title "$bookmark")
|
||||
buku --nostdin -d "$bookmark" --tacit
|
||||
fifo "message-info 'Deleted bookmark $title.'"
|
||||
}
|
||||
|
||||
edit() {
|
||||
bookmark=$(get_bookmark "Edit")
|
||||
fifo "message-info 'Editing bookmark $(get_title "$bookmark")'"
|
||||
$TERMINAL --class badd,badd -e buku -w "$bookmark"
|
||||
}
|
||||
|
||||
main() {
|
||||
case "$1" in
|
||||
"add")
|
||||
[ -n "$2" ] && QUTE_URL=$2
|
||||
add
|
||||
exit
|
||||
;;
|
||||
"open")
|
||||
open "$2"
|
||||
exit
|
||||
;;
|
||||
"delete")
|
||||
delete
|
||||
exit
|
||||
;;
|
||||
"edit")
|
||||
edit
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
main $@
|
Loading…
Add table
Add a link
Reference in a new issue