X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/d23e9a8d21ebd93b4bfc68d15482ac620d13a9ac..70b6d8a676e74499c2d9c601b7f69835deb99e93:/awesome/bindings.lua diff --git a/awesome/bindings.lua b/awesome/bindings.lua index a6a58b3..20e81a7 100644 --- a/awesome/bindings.lua +++ b/awesome/bindings.lua @@ -33,8 +33,6 @@ globalkeys = awful.util.table.join( -- Layout manipulation awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end), awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end), - awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end), - awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end), awful.key({ modkey, }, "u", awful.client.urgent.jumpto), awful.key({ modkey, }, "Tab", function () @@ -120,7 +118,10 @@ clientkeys = awful.util.table.join( awful.key({ modkey, "Shift" }, "#94", awful.client.movetoscreen ), -- ontop and below awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end), - awful.key({ modkey, }, "b", function (c) c.below = not c.below end) + awful.key({ modkey, }, "b", function (c) c.below = not c.below end), + -- resize slave + awful.key({ modkey, "Control" }, "j", function (c) awful.client.incwfact( 0.05, c) end), + awful.key({ modkey, "Control" }, "k", function (c) awful.client.incwfact(-0.05, c) end) -- }}} ) -- }}}