aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
Diffstat (limited to '.config')
-rw-r--r--.config/awesome/rc.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua
index e0551b1..0d04889 100644
--- a/.config/awesome/rc.lua
+++ b/.config/awesome/rc.lua
@@ -495,6 +495,12 @@ clientkeys = gears.table.join(
c:raise()
end,
{description = "toggle fullscreen", group = "client"}),
+ awful.key({ modkey }, "Return",
+ function (c)
+ c.fullscreen = not c.fullscreen
+ c:raise()
+ end,
+ {description = "toggle fullscreen", group = "client"}),
awful.key({ "Mod1" }, "F4", function (c) c:kill() end,
{description = "close", group = "client"}),
awful.key({ modkey }, "q", function (c) c:kill() end,
@@ -528,7 +534,7 @@ clientkeys = gears.table.join(
c.minimized = true
end ,
{description = "minimize", group = "client"}),
- awful.key({ modkey }, "Return",
+ awful.key({ modkey, "Shift" }, "Return",
function (c)
c.maximized = not c.maximized
c:raise()