init commit
This commit is contained in:
commit
e2dd987b5e
|
@ -0,0 +1,16 @@
|
|||
local wibox = require("wibox")
|
||||
local gears = require("gears")
|
||||
local awful = require("awful")
|
||||
local theme = require("beautiful")
|
||||
local dpi = theme.xresources.apply_dpi
|
||||
|
||||
local module = {}
|
||||
|
||||
local function new(config)
|
||||
local cfg = config or {}
|
||||
end
|
||||
|
||||
return setmetatable(module, { __call = function(_, ...)
|
||||
new(...)
|
||||
return module
|
||||
end })
|
Loading…
Reference in New Issue