14 lines
255 B
Lua
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
|