feat: removed mouse shortcuts

This commit is contained in:
angeD 2021-12-25 22:18:09 +01:00
parent ec2bacbc91
commit 782b5b9948

View File

@ -103,30 +103,6 @@ local taglist_buttons = gears.table.join(
client.focus:move_to_tag(t) client.focus:move_to_tag(t)
end end
end end
),
awful.button(
{}, 3,
awful.tag.viewtoggle
),
awful.button(
{modkey}, 3,
function(t)
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
) )
) )
@ -140,24 +116,6 @@ local tasklist_buttons = gears.table.join(
c:emit_signal("request::activate", "tasklist", {raise = true}) c:emit_signal("request::activate", "tasklist", {raise = true})
end end
end end
),
awful.button(
{}, 3,
function()
awful.menu.client_list({theme = {width = 250}})
end
),
awful.button(
{}, 4,
function()
awful.client.focus.byidx(1)
end
),
awful.button(
{}, 5,
function()
awful.client.focus.byidx(-1)
end
) )
) )