Fix hotkey collision

This commit is contained in:
Alice Gaudon 2021-02-17 11:37:32 +01:00
parent c8409703e1
commit 4b93a05fa5
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ clientkeys = gears.table.join(-- tiling
{ description = "toggle fullscreen", group = "client" }),
awful.key({ config.keys.modkey, "Shift" }, "c", function(c) c:kill() end,
{ description = "close", group = "client" }),
awful.key({ config.keys.modkey, "Control" }, "space", awful.client.floating.toggle,
awful.key({ config.keys.modkey, "Shift" }, "space", awful.client.floating.toggle,
{ description = "toggle floating", group = "client" }),
awful.key({ config.keys.modkey, "Control" }, "Return", function(c) c:swap(awful.client.getmaster()) end,
{ description = "move to master", group = "client" }),