diff --git a/simple/init.lua b/simple/init.lua index 801c60e..3159dd8 100644 --- a/simple/init.lua +++ b/simple/init.lua @@ -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",