This commit is contained in:
BZ 2020-06-18 11:04:09 +02:00
parent e2dd987b5e
commit 5edb9b4c9e
1 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,12 @@ local dpi = theme.xresources.apply_dpi
local module = {}
local function set_icon(c, icon)
if not c then return end
icon = gears.surface(icon)
c.icon = icon and icon._native or nil
end
local function new(config)
local cfg = config or {}
end