Created
March 29, 2020 18:24
-
-
Save tyjak/1884981b286952cc348a7510b4e4e816 to your computer and use it in GitHub Desktop.
"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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