contrib: initialization bugfix after lua52 port
The _NAME field was missing in the contrib table. Thanks to Jorg Thalheim for reporting this.
This commit is contained in:
parent
4caf95bfd0
commit
1a7b43068c
|
@ -11,7 +11,7 @@ local wrequire = require("vicious.helpers").wrequire
|
||||||
|
|
||||||
-- Vicious: widgets for the awesome window manager
|
-- Vicious: widgets for the awesome window manager
|
||||||
-- vicious.contrib
|
-- vicious.contrib
|
||||||
local contrib = {}
|
local contrib = { _NAME = "vicious.contrib" }
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
-- Load modules at runtime as needed
|
-- Load modules at runtime as needed
|
||||||
|
|
1
init.lua
1
init.lua
|
@ -22,6 +22,7 @@ local helpers = require("vicious.helpers")
|
||||||
-- Vicious: widgets for the awesome window manager
|
-- Vicious: widgets for the awesome window manager
|
||||||
local vicious = {}
|
local vicious = {}
|
||||||
vicious.widgets = require("vicious.widgets")
|
vicious.widgets = require("vicious.widgets")
|
||||||
|
--vicious.contrib = require("vicious.contrib")
|
||||||
|
|
||||||
-- Initialize tables
|
-- Initialize tables
|
||||||
local timers = {}
|
local timers = {}
|
||||||
|
|
Loading…
Reference in New Issue