summaryrefslogtreecommitdiffstats
path: root/.scripts
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-10-11 19:45:23 -0400
committerLuke Smith <luke@lukesmith.xyz>2018-10-11 19:45:23 -0400
commit2c44ee2b73bfd517fde7dbfe998f1414c712aa39 (patch)
treef306398381410a861f8301f74392b65c3af07b80 /.scripts
parent7140495e2d6f1f92a7f5ff821f2499ccfd7ce6ee (diff)
downloadeibhear-2c44ee2b73bfd517fde7dbfe998f1414c712aa39.tar.gz
eibhear-2c44ee2b73bfd517fde7dbfe998f1414c712aa39.tar.zst
eibhear-2c44ee2b73bfd517fde7dbfe998f1414c712aa39.zip
duckduckgo search binding added with dox
Diffstat (limited to '.scripts')
-rw-r--r--.scripts/SCRIPTS.md12
-rwxr-xr-x.scripts/ducksearch15
2 files changed, 27 insertions, 0 deletions
diff --git a/.scripts/SCRIPTS.md b/.scripts/SCRIPTS.md
index 7e794c1..cd16f20 100644
--- a/.scripts/SCRIPTS.md
+++ b/.scripts/SCRIPTS.md
@@ -28,6 +28,12 @@ Turns off/on all user cronjobs.
Select which displays to use. Bound to `mod+F3`.
+## `dmenuarchwiki`
+
+Bind this script to a key and it will give you a prompt to search for a term in
+the Arch Wiki. Used to be binded to `mod+F11`, but has been replaced by
+`ducksearch` there.
+
## `dmenuhandler`
Give this script a url and it will offer dmenu options for opening it. Used by
@@ -53,6 +59,12 @@ if none are mounted.
The command initially run in the `math` window (toggeable with `mod+a`). Runs
`r` if available, else `python`.
+## `ducksearch`
+
+Show a dmenu prompt and search for the inputed text in DuckDuckGo. Can take
+bangtags as expected, i.e. typing in `!aw Arch Linux` will search the Arch Wiki
+for "Arch Linux" or `!yt Luke Smith` will search YouTube for "Luke Smith", etc.
+
## `extract`
Will detect file type of archive and run appropriate extraction command.
diff --git a/.scripts/ducksearch b/.scripts/ducksearch
new file mode 100755
index 0000000..13a1e19
--- /dev/null
+++ b/.scripts/ducksearch
@@ -0,0 +1,15 @@
+#!/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