diff options
Diffstat (limited to 'dotfiles/.local/bin/rofiwebsurf')
-rwxr-xr-x | dotfiles/.local/bin/rofiwebsurf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dotfiles/.local/bin/rofiwebsurf b/dotfiles/.local/bin/rofiwebsurf new file mode 100755 index 0000000..bcba65f --- /dev/null +++ b/dotfiles/.local/bin/rofiwebsurf @@ -0,0 +1,24 @@ +#!/bin/bash + +if [ "$ROFI_RETV" != 0 ]; then + choice="$1" + if echo "$choice" | egrep ".*://.*" >/dev/null 2>&1; then + choice="$(echo "$choice" | grep -Eo "[^[:space:]]*:\/\/[^[:space:]]*" | + head -n1 | + grep -E "https?:" || echo "$choice")" + mimeo "$choice" > /dev/null + else + setsid $BROWSER "$choice" > /dev/null & + fi + exit 0 +fi + +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 "$bmarks" -)" + +echo -ne "\0prompt\x1fEnter query or link\n" +printf "%s" "$prompt" |