From 0c0a900f0078932a1876dc814f960015b7e47aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krzysztof=20Feiler?= Date: Sat, 25 Apr 2020 02:02:06 +0200 Subject: [PATCH] no shift for B-key horiz maximizing, previously overlooked. unfixed still #1 anyway --- .config/awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 45f9236..f2d058c 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -424,7 +424,7 @@ clientkeys = gears.table.join( c:raise() end , {description = "(un)maximize vertically", group = "client"}), - awful.key({ modkey, "Shift" }, "b", + awful.key({ modkey, }, "b", function (c) c.maximized_horizontal = not c.maximized_horizontal c:raise()