114 lines
3.2 KiB
Lua
114 lines
3.2 KiB
Lua
-----------------------------
|
|
-- This is the date widget --
|
|
-----------------------------
|
|
|
|
-- Awesome Libs
|
|
local awful = require("awful")
|
|
local color = require("theme.crylia.colors")
|
|
local dpi = require("beautiful").xresources.apply_dpi
|
|
local gears = require("gears")
|
|
local wibox = require("wibox")
|
|
|
|
-- Icon directory path
|
|
local icondir = awful.util.getdir("config") .. "theme/crylia/assets/icons/date/"
|
|
|
|
-- Returns the date widget
|
|
return function ()
|
|
|
|
local date_widget = wibox.widget{
|
|
{
|
|
{
|
|
{
|
|
{
|
|
{
|
|
id = "icon",
|
|
image = gears.color.recolor_image(icondir .. "calendar.svg", color.color["Grey900"]),
|
|
widget = wibox.widget.imagebox,
|
|
resize = false
|
|
},
|
|
id = "icon_layout",
|
|
widget = wibox.container.place
|
|
},
|
|
id = "icon_margin",
|
|
top = dpi(2),
|
|
widget = wibox.container.margin
|
|
},
|
|
spacing = dpi(10),
|
|
{
|
|
id = "label",
|
|
align = "center",
|
|
valign = "center",
|
|
widget = wibox.widget.textbox
|
|
},
|
|
id = "date_layout",
|
|
layout = wibox.layout.fixed.horizontal
|
|
},
|
|
id = "container",
|
|
left = dpi(10),
|
|
right = dpi(10),
|
|
widget = wibox.container.margin
|
|
},
|
|
bg = color.color["Teal200"],
|
|
fg = color.color["Grey900"],
|
|
shape = function (cr, width, height)
|
|
gears.shape.rounded_rect(cr, width, height, 5)
|
|
end,
|
|
widget = wibox.widget.background
|
|
}
|
|
|
|
local set_date = function ()
|
|
date_widget.container.date_layout.label:set_text(os.date("%a, %b %d"))
|
|
end
|
|
|
|
-- Updates the date every minute, dont blame me if you miss silvester
|
|
local date_updater = gears.timer {
|
|
timeout = 60,
|
|
autostart = true,
|
|
call_now = true,
|
|
callback = function ()
|
|
set_date()
|
|
end
|
|
}
|
|
|
|
-- Signals
|
|
local old_wibox, old_cursor, old_bg
|
|
date_widget:connect_signal(
|
|
"mouse::enter",
|
|
function ()
|
|
old_bg = date_widget.bg
|
|
date_widget.bg = color.color["Teal200"] .. "dd"
|
|
local w = mouse.current_wibox
|
|
if w then
|
|
old_cursor, old_wibox = w.cursor, w
|
|
w.cursor = "hand1"
|
|
end
|
|
end
|
|
)
|
|
|
|
date_widget:connect_signal(
|
|
"button::press",
|
|
function ()
|
|
date_widget.bg = color.color["Teal200"] .. "bb"
|
|
end
|
|
)
|
|
|
|
date_widget:connect_signal(
|
|
"button::release",
|
|
function ()
|
|
date_widget.bg = color.color["Teal200"] .. "dd"
|
|
end
|
|
)
|
|
|
|
date_widget:connect_signal(
|
|
"mouse::leave",
|
|
function ()
|
|
date_widget.bg = old_bg
|
|
if old_wibox then
|
|
old_wibox.cursor = old_cursor
|
|
old_wibox = nil
|
|
end
|
|
end
|
|
)
|
|
|
|
return date_widget
|
|
end |