1
0
awesomewm-config/help.lua
2023-06-04 15:59:49 +03:00

14 lines
255 B
Lua

local help = {}
help.rrect = function(rad)
return function(cr, width, height)
gears.shape.rounded_rect(cr, width, height, rad)
end
end
help.fg = function (text, color)
return "<span foreground='"..color.."'>"..text.."</span>"
end
return help