Skip to content

Instantly share code, notes, and snippets.

@tyjak
Created March 29, 2020 18:24
Show Gist options
  • Select an option

  • Save tyjak/1884981b286952cc348a7510b4e4e816 to your computer and use it in GitHub Desktop.

Select an option

Save tyjak/1884981b286952cc348a7510b4e4e816 to your computer and use it in GitHub Desktop.
"
#!/bin/sh
# to search something with duckduckgo on vimb
#!/bin/bash
search=`dmenu -nb '#859900' -nf '#eee8d5' -sb '#cb4b16' -fn 'MesloLGSDZ Nerd Font-10' -h 36 -p "DuckDuckGo:"`
echo $search
if [ ! -z "$search" ]; then
search=`jq -nr --arg v "$search" '$v|@uri'`
vimb https://duckduckgo.com/html/?q=$search
fi
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment