X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/823659d83d1262bbd94821e8460822c0130fff56..3cd8b2001381997e1556c95c12eb0736fe6f7ebc:/asyncshell.lua diff --git a/asyncshell.lua b/asyncshell.lua index 4eb8d2e..4a01caa 100644 --- a/asyncshell.lua +++ b/asyncshell.lua @@ -11,7 +11,9 @@ -- ...asynchronously: -- asyncshell.request('wscript -Kiev', function(f) wwidget.text = f:read("*l") end) -- ...synchronously --- wwidget.text = asyncshell.demand('wscript -Kiev', 5):read("*l") or "Error" +-- widget:set_text(asyncshell.demand('wscript -Kiev', 5):read("*l") or "Error") + +-- This is more cpu demanding, but makes things faster. local spawn = require('awful.util').spawn @@ -37,7 +39,7 @@ end function asyncshell.request(command, callback) local id = next_id() local tmpfname = asyncshell.file_template .. id - asyncshell.request_table[id] = {callback = callback} + asyncshell.request_table[id] = { callback = callback } local req = string.format("sh -c '%s > %s; " .. 'echo "asyncshell.deliver(%s)" | ' ..