Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BZ committed Jun 18, 2020
0 parents commit e2dd987
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
icon_customizer for awesomewm
==================
16 changes: 16 additions & 0 deletions init.lua
Original file line number Diff line number Diff line change
@@ -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 })

0 comments on commit e2dd987

Please sign in to comment.