From fc2fd51f947b62ffb12ef824e75471bb54052c56 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Fri, 20 Mar 2015 19:32:32 +0100 Subject: [PATCH] xrun: don't use spawn_with_shell We don't need a shell. --- rc/xrun.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc/xrun.lua b/rc/xrun.lua index b9b2dbc..2d4f94f 100644 --- a/rc/xrun.lua +++ b/rc/xrun.lua @@ -20,7 +20,7 @@ local xrun_now = function(name, cmd) if os.execute("xwininfo -name '" .. name .. "' > /dev/null 2> /dev/null") == 0 then return end - awful.util.spawn_with_shell(cmd or name) + awful.util.spawn(cmd or name, false) end -- Run a command if not already running.