diff options
Diffstat (limited to 'dotfiles/.local/bin/menuwebsurf')
-rwxr-xr-x | dotfiles/.local/bin/menuwebsurf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dotfiles/.local/bin/menuwebsurf b/dotfiles/.local/bin/menuwebsurf index 9e1a7a9..8d63fc8 100755 --- a/dotfiles/.local/bin/menuwebsurf +++ b/dotfiles/.local/bin/menuwebsurf @@ -12,10 +12,11 @@ if [ "$1" = "paste" ]; then prompt="$(wl-paste)" else qmarks="$HOME/.config/qutebrowser/quickmarks" + bmarks="$HOME/.config/qutebrowser/bookmarks/urls" hist="$HOME/.local/share/qutebrowser/history.sqlite" prompt="$(sqlite3 -separator ' ' "$hist" \ 'select title, url from CompletionHistory' | - cat "$qmarks" -)" + cat "$qmarks" - | cat "$bmarks" -)" fi choice=$(printf "%s" "$prompt" | |