diff --git a/fish/.config/fish/functions/bo.fish b/fish/.config/fish/functions/bo.fish new file mode 100644 index 0000000..3aa4886 --- /dev/null +++ b/fish/.config/fish/functions/bo.fish @@ -0,0 +1,6 @@ +function bo --description "Open a bookmark saved by qutebrowser" + set url (cat ~/.config/qutebrowser/bookmarks/urls | fzf | awk -F" " '{print $1}') + if test -n "$url" + qutebrowser $url + end +end