[*] Initial commit.

This commit is contained in:
2022-08-15 23:41:17 +02:00
commit 6dd7691d71
22 changed files with 1717 additions and 0 deletions

14
spacer.lua Normal file
View File

@@ -0,0 +1,14 @@
local BASE = (...):gsub('spacer', '')
local Widget = require BASE..'widget'
-- Spacers don't accept focus
local Spacer = setmetatable({ nofocus = true }, Widget)
Spacer.__index = Spacer
function Spacer.new(args)
return setmetatable(args, Spacer)
end
return Spacer