Add mousebinds to taglist activator

This commit is contained in:
elenapan 2020-04-02 11:42:54 +03:00
parent f4b18c6f82
commit b425bfc845

View file

@ -90,6 +90,16 @@ awful.screen.connect_for_each_screen(function(s)
autohide()
end)
s.mywibox_activator:buttons(
gears.table.join(
awful.button({ }, 4, function ()
awful.tag.viewprev()
end),
awful.button({ }, 5, function ()
awful.tag.viewnext()
end)
))
s.mywibox:connect_signal("mouse::enter", function ()
if popup_timer then
popup_timer:stop()