This repository has been archived on 2024-09-01. You can view files and clone it, but cannot push or open issues or pull requests.
al-skel/home/.config/awesome/vicious/widgets/date.lua

28 lines
703 B
Lua
Raw Normal View History

---------------------------------------------------
-- Licensed under the GNU General Public License v2
-- * (c) 2010, Adrian C. <anrxc@sysphere.org>
-- * (c) 2009, Lucas de Vries <lucas@glacicle.com>
---------------------------------------------------
-- {{{ Grab environment
local setmetatable = setmetatable
local os = {
2018-05-18 22:36:34 -05:00
date = os.date,
time = os.time
}
-- }}}
-- Date: provides access to os.date with optional time formatting
-- vicious.widgets.date
local date = {}
-- {{{ Date widget type
local function worker(format, warg)
2018-05-18 22:36:34 -05:00
return os.date(format or nil, warg and os.time()+warg or nil)
end
-- }}}
return setmetatable(date, { __call = function(_, ...) return worker(...) end })