From 0507ca440695624542fac67220807b0a5a69add2 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sun, 24 Aug 2014 22:11:30 +0100 Subject: [PATCH] awesome: add toggle screen key for chronos --- awesome/bindings.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/awesome/bindings.lua b/awesome/bindings.lua index fd2246e..41a6236 100644 --- a/awesome/bindings.lua +++ b/awesome/bindings.lua @@ -85,7 +85,8 @@ globalkeys = awful.util.table.join(globalkeys, awful.key({ }, "Print", function () awful.util.spawn("ksnapshot") end), -- Layout manipulation awful.key({ modkey, }, "Escape", awful.tag.history.restore), - awful.key({ modkey, }, "#94", function () awful.screen.focus_relative( 1) end), -- that's the key left of 1 + awful.key({ modkey, }, "#49", function () awful.screen.focus_relative( 1) end), -- that's the key left of 1 (chronos) + awful.key({ modkey, }, "#94", function () awful.screen.focus_relative( 1) end), -- that's the key left of 1 (shada) awful.key({ modkey, "Control" }, "Left", function () awful.screen.focus_relative( 1) end), awful.key({ modkey, "Control" }, "Right", function () awful.screen.focus_relative(-1) end), -- Volume @@ -116,6 +117,7 @@ clientkeys = awful.util.table.join( -- {{{2 My Client Keys -- Move client to screen awful.key({ modkey, "Shift" }, "#94", awful.client.movetoscreen ), + awful.key({ modkey, "Shift" }, "#49", 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) -- 2.48.1