Files
AwesomeWM-Config/bindings/global_buttons.lua
2024-03-04 20:05:40 -07:00

15 lines
298 B
Lua

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,
})