From: martin f. krafft Date: Mon, 20 Jun 2022 04:28:00 +0000 (+0200) Subject: move to screen hotkey X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/919bfd61fe75c2f3178a1d3d4f47cdc2b1fd2ff9?hp=9bcd60698bbf879bc913d25baab84c447cd9dbbc move to screen hotkey --- diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index d2e0dc8..c35c40d 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -816,6 +816,8 @@ clientkeys = gears.table.join( {description = "toggle floating", group = "client"}), awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end, {description = "move to master", group = "client"}), + awful.key({ modkey, }, "z", function (c) c:move_to_screen() end, + {description = "move to screen", group = "client"}), awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end, {description = "toggle keep on top", group = "client"}), awful.key({ modkey, }, "n",