You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
dmenu="dmenu -l 0 -theme-str 'window {width: 80%;}' -i"
|
|
|
|
query=$(eval "$dmenu")
|
|
|
|
if [ -n "$query" ]; then
|
|
|
|
query=${query//+/%2B}
|
|
|
|
query=${query// /+}
|
|
|
|
~/.local/bin/zen-x86_64.AppImage --new-window "https://search.brave.com/search?q=$query"
|
|
|
|
fi
|