From 69204c648abbd4463b6a1e3b6cbb67a394842379 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Sat, 4 Apr 2020 22:15:21 +0300 Subject: new menu script for opening different links with different programs (or performing a search) --- dotfiles/.local/bin/menuwebsurf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 dotfiles/.local/bin/menuwebsurf (limited to 'dotfiles/.local/bin/menuwebsurf') diff --git a/dotfiles/.local/bin/menuwebsurf b/dotfiles/.local/bin/menuwebsurf new file mode 100755 index 0000000..7c59e3e --- /dev/null +++ b/dotfiles/.local/bin/menuwebsurf @@ -0,0 +1,23 @@ +#!/bin/sh + +# menu prompt to open a link or search with duckduckgo if it's +# not a url + +# Source settings from .bemenurc +. ~/.config/bemenurc + +prompt="🌐" + +# Have to use this "hack" because bemenu doesn't know how to paste +if [ "$1" = "paste" ]; then + prompt="$(wl-paste)" +fi + +choice=$(echo "$prompt" | bemenu -i -p "Enter link or query:" --tf="$BEMENU_TF" --tb="$BEMENU_NB" --fb="$BEMENU_NB" --fn="$BEMENU_FN" --nb="$BEMENU_NB" --nf="$BEMENU_NF" --hf="$BEMENU_HF" --hb="$BEMENU_HB") || exit 1 + +if [ "$choice" = "🌐" ]; then + linkhandler +else + linkhandler "$choice" +fi + -- cgit v1.2.3