11 lines
260 B
Bash
Executable file
11 lines
260 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Scrit to open my browser with a specified search term taken from dmenu prompt
|
|
|
|
. ~/.config/dmenu/config
|
|
|
|
search=$(printf '%s' | $DMENU -p "Enter search term: ")
|
|
|
|
[ -z $search ] && exit 1
|
|
|
|
$BROWSER "http://searx.cronyakatsuki.xyz/search?q=$search"
|