Disable wheel tag switching

This commit is contained in:
Augusto Gunsch 2022-04-10 15:44:03 -03:00
parent 23bb1cd531
commit 7b951f6598
1 changed files with 6 additions and 6 deletions

View File

@ -157,9 +157,9 @@ local taglist_buttons = gears.table.join(
if client.focus then
client.focus:toggle_tag(t)
end
end),
awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
end)
--awful.button({ }, 4, function(t) awful.tag.viewnext(t.screen) end),
--awful.button({ }, 5, function(t) awful.tag.viewprev(t.screen) end)
)
local tasklist_buttons = gears.table.join(
@ -299,9 +299,9 @@ end)
-- {{{ Mouse bindings
root.buttons(gears.table.join(
awful.button({ }, 3, function () mymainmenu:toggle() end),
awful.button({ }, 4, awful.tag.viewnext),
awful.button({ }, 5, awful.tag.viewprev)
awful.button({ }, 3, function () mymainmenu:toggle() end)
--awful.button({ }, 4, awful.tag.viewnext),
--awful.button({ }, 5, awful.tag.viewprev)
))
-- }}}