Big changes

This commit is contained in:
2022-04-14 00:35:06 +03:00
parent 5b218de55a
commit 9136f7ef3d
96 changed files with 1780 additions and 671 deletions

View File

@@ -0,0 +1,28 @@
local gears = require("gears")
local awful = require("awful")
local wibox = require("wibox")
function layoutbox(s)
lb = awful.widget.layoutbox(s)
lb:buttons(
gears.table.join(
awful.button(
{},
1,
function()
awful.layout.inc(1)
end
),
awful.button(
{},
3,
function()
awful.layout.inc(-1)
end
)
)
)
return lb
end