X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/9bcd60698bbf879bc913d25baab84c447cd9dbbc..83a938857fe5f2b5872b13553931031699e73073:/.config/awesome/rc.lua diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index d2e0dc8..fc513be 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", @@ -931,7 +933,8 @@ awful.key(nil, "XF86LaunchA", function () awful.spawn("") end), awful.key(nil, "XF86Explorer", function () awful.spawn("") end), awful.key(nil, "XF86Favorites", function () awful.spawn("systemctl suspend") end), -awful.key({ cmdkey }, "Multi_key", function () run_output_notify("flameshot gui") end), +awful.key({ cmdkey }, "Multi_key", function () run_output_notify("flameshot gui", "Output") end), +awful.key({ cmdkey, "Shift" }, "Multi_key", function () run_output_notify("flameshot full --delay 2000 --clipboard", "Output") end), awful.key({ cmdkey }, "Up", function () awful.spawn("pap prev") end), awful.key({ cmdkey }, "Left", function () awful.spawn("pap seek -10") end),