forked from ashpie/simple-awesome
Fix hotkey collision with super + space
This commit is contained in:
parent
eaccc4b0df
commit
755eb1acc4
@ -424,9 +424,9 @@ hotkey.registerKeys(
|
|||||||
{ description = "increase the number of columns", group = "layout" }),
|
{ description = "increase the number of columns", group = "layout" }),
|
||||||
awful.key({ config.keys.modkey, "Control" }, "l", function() awful.tag.incncol(-1, nil, true) end,
|
awful.key({ config.keys.modkey, "Control" }, "l", function() awful.tag.incncol(-1, nil, true) end,
|
||||||
{ description = "decrease the number of columns", group = "layout" }),
|
{ description = "decrease the number of columns", group = "layout" }),
|
||||||
awful.key({ config.keys.modkey, }, "space", function() awful.layout.inc(1) end,
|
awful.key({ config.keys.modkey, }, "v", function() awful.layout.inc(1) end,
|
||||||
{ description = "select next", group = "layout" }),
|
{ description = "select next", group = "layout" }),
|
||||||
awful.key({ config.keys.modkey, "Shift" }, "space", function() awful.layout.inc(-1) end,
|
awful.key({ config.keys.modkey }, "c", function() awful.layout.inc(-1) end,
|
||||||
{ description = "select previous", group = "layout" }),
|
{ description = "select previous", group = "layout" }),
|
||||||
|
|
||||||
awful.key({ config.keys.modkey, "Control" }, "n",
|
awful.key({ config.keys.modkey, "Control" }, "n",
|
||||||
|
Loading…
Reference in New Issue
Block a user