summaryrefslogtreecommitdiffstats
path: root/awesome
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-09-01 12:45:22 +0200
committerGravatar Tom Willemse2014-09-01 12:45:22 +0200
commit9cb6fa5093e4d8eff5a5159f979532346223f939 (patch)
tree920d98599bf4b87007c0d37cc436d8a89db25f58 /awesome
parentb03312fa4441c9708290b65182dffc23731c8508 (diff)
downloaddotfiles-9cb6fa5093e4d8eff5a5159f979532346223f939.tar.gz
dotfiles-9cb6fa5093e4d8eff5a5159f979532346223f939.zip
Add keys to move windows to different screens
Diffstat (limited to 'awesome')
-rw-r--r--awesome/.config/awesome/rc.lua2
1 files changed, 2 insertions, 0 deletions
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),