Files
dotfiles/home/benk/.config/awesome/ben/widgets.lua
2026-03-11 13:33:25 +00:00

17 lines
313 B
Lua

local wibox = require("wibox")
local widgets = {}
widgets.clock = wibox.widget({
widget = wibox.widget.textclock,
format = " %H:%M:%S %a %d/%m/%Y ",
refresh = 1,
})
widgets.separator = wibox.widget.separator()
widgets.systray = wibox.widget.systray()
widgets.systray:set_base_size(30)
return widgets