From 9cb6fa5093e4d8eff5a5159f979532346223f939 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 1 Sep 2014 12:45:22 +0200 Subject: Add keys to move windows to different screens --- awesome/.config/awesome/rc.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'awesome') diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index d170a8e..638906a 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -314,6 +314,8 @@ globalkeys = awful.util.table.join( awful.key({ modkey, "Shift" }, "p", function () awful.client.swap.byidx( -1) end), awful.key({ modkey, }, ".", function () awful.screen.focus_relative( 1) end), awful.key({ modkey, }, ",", function () awful.screen.focus_relative(-1) end), + awful.key({ modkey, "Shift" }, ".", function () awful.client.movetoscreen(client.focus) end), + awful.key({ modkey, "Shift" }, ",", function () awful.client.movetoscreen(client.focus, -1) end), awful.key({ modkey, }, "u", awful.client.urgent.jumpto), awful.key({ modkey, }, "Tab", hpraise), -- cgit v1.2.3-54-g00ecf