X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/301faf5370d045e94c9c344acb0fdac84a2f25a6..cf2c44249973125a51c370311e7361d9c1e84771:/helpers.lua diff --git a/helpers.lua b/helpers.lua index 6c0c3c4..6a47738 100644 --- a/helpers.lua +++ b/helpers.lua @@ -16,6 +16,8 @@ local io = { open = io.open, local rawget = rawget local table = { sort = table.sort } +local wibox = require("wibox") + -- Lain helper functions for internal use -- lain.helpers local helpers = {} @@ -140,7 +142,9 @@ end -- }}} ---{{{ Iterate over table of records sorted by keys +-- {{{ Misc + +-- iterate over table of records sorted by keys function helpers.spairs(t) -- collect the keys local keys = {} @@ -157,7 +161,15 @@ function helpers.spairs(t) end end end ---}}} +-- create a lain textbox widget +function helpers.make_widget_textbox() + local w = wibox.widget.textbox('') + local t = wibox.widget.base.make_widget(w) + t.widget = w + return t +end + +-- }}} return helpers