mirror of
https://github.com/vicious-widgets/vicious.git
synced 2026-09-10 07:06:17 -04:00
The _NAME field was missing in the contrib table. Thanks to Jorg Thalheim for reporting this.
19 lines
633 B
Lua
19 lines
633 B
Lua
---------------------------------------------------
|
|
-- Vicious widgets for the awesome window manager
|
|
---------------------------------------------------
|
|
-- Licensed under the GNU General Public License v2
|
|
-- * (c) 2010, Adrian C. <anrxc@sysphere.org>
|
|
---------------------------------------------------
|
|
|
|
-- {{{ Setup environment
|
|
local setmetatable = setmetatable
|
|
local wrequire = require("vicious.helpers").wrequire
|
|
|
|
-- Vicious: widgets for the awesome window manager
|
|
-- vicious.contrib
|
|
local contrib = { _NAME = "vicious.contrib" }
|
|
-- }}}
|
|
|
|
-- Load modules at runtime as needed
|
|
return setmetatable(contrib, { __index = wrequire })
|