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

View File

@@ -0,0 +1,17 @@
local awful = require("awful")
local wibox = require("wibox")
local widgets = require("statusbar.top.widgets")
return function(s)
-- Create the wibox
s.top_wibox = awful.wibar({ position = "top", screen = s })
-- Add widgets to the wibox
s.top_wibox:setup({
layout = wibox.layout.align.horizontal,
nil,
s.tasklist, -- Middle widget
widgets(s), -- Right widgets
})
end