voidrice/.scripts/ducksearch
2018-10-11 19:45:23 -04:00

15 lines
361 B
Bash
Executable file

#!/bin/sh
# Gives a dmenu prompt to search DuckDuckGo.
# Without input, will open DuckDuckGo.com.
# Anything else, it search it.
pgrep -x dmenu && exit
choice=$(echo "🦆" | dmenu -i -p "Search DuckDuckGo:") || exit 1
if [ "$choice" = "🦆" ]; then
$BROWSER "https://duckduckgo.com"
else
$BROWSER "https://duckduckgo.com/?q=$choice&t=ffab&atb=v1-1"
fi