From 484181c25cba61469254e24bff578cff5189c8a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaroslav=20de=20la=20Pe=C3=B1a=20Smirnov?= Date: Tue, 17 May 2022 06:10:02 +0300 Subject: WIP: move to rofi --- dotfiles/.local/bin/rofiwebsurf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 dotfiles/.local/bin/rofiwebsurf (limited to 'dotfiles/.local/bin/rofiwebsurf') diff --git a/dotfiles/.local/bin/rofiwebsurf b/dotfiles/.local/bin/rofiwebsurf new file mode 100755 index 0000000..b6f6e87 --- /dev/null +++ b/dotfiles/.local/bin/rofiwebsurf @@ -0,0 +1,23 @@ +#!/bin/bash + +if [ "$ROFI_RETV" != 0 ]; then + choice="$1" + if echo "$choice" | egrep ".*://.*" >/dev/null 2>&1; then + choice="$(echo "$choice" | sed -E 's/(.*:\/\/([^[:space:]])*).*/\1/g' | + 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" -- cgit v1.2.3