forked from ashpie/simple-awesome
Fix hotkey collision with super + space
This commit is contained in:
parent
eaccc4b0df
commit
755eb1acc4
@ -356,7 +356,7 @@ hotkey.registerKeys(
|
||||
awful.key({ config.keys.modkey }, "p",
|
||||
function()
|
||||
local screen = awful.screen.focused()
|
||||
screen.mywibox.visible = not screen.mywibox.visible
|
||||
screen.mywibox.visible = not screen.mywibox.visible
|
||||
end,
|
||||
{ description = "hide status bar", group = "screen" }))
|
||||
|
||||
@ -424,9 +424,9 @@ hotkey.registerKeys(
|
||||
{ description = "increase the number of columns", group = "layout" }),
|
||||
awful.key({ config.keys.modkey, "Control" }, "l", function() awful.tag.incncol(-1, nil, true) end,
|
||||
{ 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" }),
|
||||
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" }),
|
||||
|
||||
awful.key({ config.keys.modkey, "Control" }, "n",
|
||||
|
Loading…
Reference in New Issue
Block a user