From 4b0209f4fada8c141519608bf686d28ded817401 Mon Sep 17 00:00:00 2001 From: Jim Mitchener Date: Sun, 29 May 2016 18:33:59 -0800 Subject: [PATCH] Add description to fullscreen client key --- awesomerc.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awesomerc.lua b/awesomerc.lua index c50fb151..5757819f 100755 --- a/awesomerc.lua +++ b/awesomerc.lua @@ -331,7 +331,8 @@ clientkeys = awful.util.table.join( function (c) c.fullscreen = not c.fullscreen c:raise() - end), + end, + {description = "toggle fullscreen", group = "client"}), awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end, {description = "close", group = "client"}), awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ,