X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/653a3b0751ed4c8b75246aca6320177a686604d0..532afa7568659345b49db45c127268fa9f17771c:/.config/awesome/rc.lua diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index b181c1a..5981911 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(1) end), + awful.key({ modkey }, "F2", function () awful.screen.focus(2) end), + awful.key({ modkey }, "F3", function () awful.screen.focus(3) end), + awful.key({ modkey, "Shift" }, "F1", function () awful.client.movetoscreen(c, 1) end), + awful.key({ modkey, "Shift" }, "F2", function () awful.client.movetoscreen(c, 2) end), + awful.key({ modkey, "Shift" }, "F3", function () awful.client.movetoscreen(c, 3) 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), @@ -506,7 +513,8 @@ awful.rules.rules = { floating = true, keys = clientkeys, buttons = clientbuttons }, - callback = awful.placement.centered }, + callback = awful.placement.centered + }, { rule = { class = "URxvt" }, properties = { floating = false } }, { rule = { class = "URxvt", instance = "irc" },