diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-04-04 22:15:21 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-04-04 22:15:21 +0300 |
commit | 69204c648abbd4463b6a1e3b6cbb67a394842379 (patch) | |
tree | 45a5a1ca7d7423a3f7aeff1241365faaf472e757 /dotfiles/.local/bin/menuducksearch | |
parent | b7fd6ea69b9d207592b92b8fa5c8d0b33b271361 (diff) | |
download | swayrice-69204c648abbd4463b6a1e3b6cbb67a394842379.tar.gz swayrice-69204c648abbd4463b6a1e3b6cbb67a394842379.zip |
new menu script for opening different links with different programs (or performing a search)
Diffstat (limited to 'dotfiles/.local/bin/menuducksearch')
-rwxr-xr-x | dotfiles/.local/bin/menuducksearch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/dotfiles/.local/bin/menuducksearch b/dotfiles/.local/bin/menuducksearch deleted file mode 100755 index 54242b1..0000000 --- a/dotfiles/.local/bin/menuducksearch +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -# Gives a dmenu prompt to search DuckDuckGo. -# Without input, will open DuckDuckGo.com. -# Anything else, it search it. - -# Source settings from .bemenurc -. ~/.config/bemenurc - -choice=$(echo "" | bemenu -i -p "Search DuckDuckGo:" --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 - $BROWSER "https://duckduckgo.com" -else - $BROWSER "https://duckduckgo.com/?q=$choice&t=ffab&atb=v1-1" -fi |