M
Size: a a a
M
d
M
d
s
d
d
M
d
d
IT
IT
local wibox = require("wibox")
test.width = 300
test.height = 300
test.bg_color = "#00000000"
test.x = 20
test.y = 500
local test_wbox = wibox({ bg = test.bg_color,
width = test.width,
height = test.height})
test_wbox.ontop = false -- Ниже всех окон
test_wbox.visible = true -- Виден
test_wbox:geometry({x = test.x, y = test.y}) -- Координаты
IT
C
C
C
IT
C
d