scripts sorted

This commit is contained in:
Luke Smith
2018-11-05 17:51:24 -05:00
parent cd667e6aa1
commit 2f4c2a68a1
64 changed files with 273 additions and 331 deletions

15
.scripts/i3cmds/ducksearch Executable file
View File

@@ -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