lazy push before updates

This commit is contained in:
Noella
2025-12-30 13:23:54 -07:00
parent 44ab8019bc
commit 34b678e020
30 changed files with 727 additions and 208 deletions

19
statusbar/top/widgets.lua Normal file
View File

@@ -0,0 +1,19 @@
local wibox = require("wibox")
local separator = require("widgets.separator")
local _M = {}
function _M.get(s)
return {
layout = wibox.layout.fixed.horizontal,
wibox.widget.systray(),
separator,
s.layoutbox,
}
end
return setmetatable({}, {
__call = function(_, ...)
return _M.get(...)
end,
})