dotfiles/.config/awesome/ui/top-panel/widgets/date.lua
2024-02-22 20:33:20 -08:00

19 lines
378 B
Lua

local gears = require("gears")
local wibox = require("wibox")
local beautiful = require("beautiful").get()
require("awful.hotkeys_popup.keys")
-- Clock
local date = wibox.widget.textbox()
date.font = beautiful.font_name .. "11"
gears.timer({
timeout = 60,
autostart = true,
call_now = true,
callback = function()
date.markup = os.date(" %a %b %d")
end,
})
return date