From 33c4a16cdc4209d4b307486a0e3527552ce3539b Mon Sep 17 00:00:00 2001 From: elenapan Date: Tue, 7 Apr 2020 04:03:57 +0300 Subject: [PATCH] Fix web search prompt not working --- config/awesome/helpers.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/awesome/helpers.lua b/config/awesome/helpers.lua index 40c2214..599d509 100644 --- a/config/awesome/helpers.lua +++ b/config/awesome/helpers.lua @@ -372,7 +372,7 @@ function helpers.prompt(action, textbox, prompt, callback) done_callback = callback, exe_callback = function(input) if not input or #input == 0 then return end - awful.spawn.with_shell(user.web_search_cmd.."\""..input.."\"") + awful.spawn.with_shell("noglob "..user.web_search_cmd.."'"..input.."'") naughty.notify { title = "Searching the web for", text = input, icon = icons.firefox } end }