#!/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