From 02e533f0246bf670c8bb5cc14f78df14a53533fe Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 6 Oct 2014 13:46:11 +0200 Subject: [PATCH] screen key-bindings --- .config/awesome/rc.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 43c61a2..c6f2149 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -373,7 +373,13 @@ globalkeys = awful.util.table.join( mypromptbox[mouse.screen].widget, awful.util.eval, nil, awful.util.getdir("cache") .. "/history_eval") - end) + end), + awful.key({ modkey }, "F1", function () awful.screen.focus(3) end), + awful.key({ modkey }, "F2", function () awful.screen.focus(1) end), + awful.key({ modkey }, "F3", function () awful.screen.focus(2) end), + awful.key({ modkey }, "F1", function () awful.client.movetoscreen(c, 3) end), + awful.key({ modkey }, "F2", function () awful.client.movetoscreen(c, 1) end), + awful.key({ modkey }, "F3", function () awful.client.movetoscreen(c, 2) end) ) clientkeys = awful.util.table.join( @@ -381,7 +387,8 @@ clientkeys = awful.util.table.join( awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end), awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ), awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end), - awful.key({ modkey, }, "o", awful.client.movetoscreen ), + awful.key({ modkey, }, "o", function (c) awful.client.movetoscreen(c, c.screen-1) end), + awful.key({ modkey, }, "p", function (c) awful.client.movetoscreen(c, c.screen+1) end), awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end), awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end), awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end), -- 2.39.2