18 lines
396 B
Lua
18 lines
396 B
Lua
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
|