X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/69ddbc74a59ead7b3c140d42d94cb39d574284fa..fa9fb11a7c3eeb186a17c6d93c5da37eb6929d58:/asyncshell.lua diff --git a/asyncshell.lua b/asyncshell.lua index 2d6b7e3..61336db 100644 --- a/asyncshell.lua +++ b/asyncshell.lua @@ -52,7 +52,11 @@ function asyncshell.request(command, callback, timeout) id, formatted_command ) - awful.util.spawn_with_shell(req) + if type(awful.spawn) == 'table' and awful.spawn.with_shell then + awful.spawn.with_shell(req) + else + awful.util.spawn_with_shell(req) + end if timeout then asyncshell.request_table[id].timer = timer({ timeout = timeout })