We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af2f61b commit 4e3f8d0Copy full SHA for 4e3f8d0
dmenu-websearch.sh
@@ -7,12 +7,12 @@
7
# Without input, will open DuckDuckGo.com.
8
# URLs will be directly handed to the browser.
9
# Anything else, it search it.
10
-browser=${BROWSER:-firefox}
+browser=${BROWSER:-x-www-browser}
11
engine="https://duckduckgo.com"
12
13
pgrep -x dmenu && exit
14
15
-choice=$(echo "?" | dmenuw "dmenu -p 'Search:'") || exit 1
+choice="$(dmenu-style --prompt 'Web search:' --choose 1 '?' -- echo)" || exit 1
16
17
if [ "$choice" = "?" ]; then
18
$browser "$engine"
0 commit comments