Skip to content

Commit

Permalink
refining
Browse files Browse the repository at this point in the history
  • Loading branch information
MobSenpai committed Jun 29, 2023
1 parent a051305 commit b4fd983
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions home/yashraj/modules/desktop/wm/awesome/keys.lua
Original file line number Diff line number Diff line change
Expand Up @@ -131,24 +131,13 @@ keys.globalkeys = gears.table.join(
end
end,
}),
awful.key({
modifiers = { mod },
key = "space",
description = "select next",
group = "layout",
on_press = function()
awful.layout.inc(1)
end,
}),
awful.key({
modifiers = { mod, shift },
key = "space",
description = "select previous",
group = "layout",
on_press = function()
awful.layout.inc(-1)
end,
}),
awful.key({ mod }, "space", function()
awful.layout.inc(1)
end, { description = "next layout", group = "tag" }),
awful.key({ mod, shift }, "space", function()
awful.layout.inc(-1)
end, { description = "previous layout", group = "tag" }
),

-- Tag switcher
awful.key({ mod }, "Tab", function()
Expand Down

0 comments on commit b4fd983

Please sign in to comment.