From 7b951f6598e4544aa10d761648717a51ea96adc3 Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Sun, 10 Apr 2022 15:44:03 -0300 Subject: [PATCH] Disable wheel tag switching --- config/awesome/rc.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index 7148848..1138988 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -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) )) -- }}}