summaryrefslogtreecommitdiffstats
path: root/.scripts/ducksearch
diff options
context:
space:
mode:
Diffstat (limited to '.scripts/ducksearch')
-rwxr-xr-x.scripts/ducksearch15
1 files changed, 0 insertions, 15 deletions
diff --git a/.scripts/ducksearch b/.scripts/ducksearch
deleted file mode 100755
index 13a1e19..0000000
--- a/.scripts/ducksearch
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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