Added bindings module

This commit is contained in:
Noella
2024-03-04 20:05:40 -07:00
parent 8464403fca
commit d738d4937f
7 changed files with 271 additions and 222 deletions

View File

@@ -0,0 +1,14 @@
local gears = require("gears")
local awful = require("awful")
local _M = {}
function _M.get()
root.buttons(gears.table.join(awful.button({}, 4, awful.tag.viewnext), awful.button({}, 5, awful.tag.viewprev)))
end
return setmetatable({}, {
__call = function(_, ...)
return _M.get(...)
end,
})