aboutsummaryrefslogtreecommitdiffstats
path: root/search
diff options
context:
space:
mode:
Diffstat (limited to 'search')
-rwxr-xr-xsearch6
1 files changed, 5 insertions, 1 deletions
diff --git a/search b/search
index 1c2e67c..7c8c77a 100755
--- a/search
+++ b/search
@@ -1,2 +1,6 @@
#!/bin/sh
-uristart "search:?q=$(echo | dmenu -p 'search>' | tr '\n' '\0' | xargs -0 uriescape | sed 's/&/%26/g;s/#/%23/g')"
+q="$(printf "%s\n%s\n" "$(xclip -o | head -n1)" "$(xclip -o -selection clipboard | head -n1)" | choose 'search>' | tr '\n' '\0' | xargs -0 uriescape | sed 's/&/%26/g;s/#/%23/g')"
+if [ ! "$q" ];then
+ exit 1
+fi
+exec uristart "search:?q=$q"