summaryrefslogtreecommitdiff
path: root/scripts/websearch
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/websearch')
-rwxr-xr-xscripts/websearch14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/websearch b/scripts/websearch
new file mode 100755
index 0000000..996ddc3
--- /dev/null
+++ b/scripts/websearch
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+
+SEARCH_ENGINE="https://search.brave.com/search?q="
+SEARCH_HISTORY=/tmp/.search_history
+
+SEARCH=$(cat $SEARCH_HISTORY | dmenu -p "search")
+
+touch $SEARCH_HISTORY
+
+cat <<< "$SEARCH
+$(cat $SEARCH_HISTORY)" > $SEARCH_HISTORY
+
+brave "$SEARCH_ENGINE$SEARCH"