From a3ae675e8e5b87aa524b5bf549aaa90d484bc2dd Mon Sep 17 00:00:00 2001 From: Von Random Date: Thu, 19 Mar 2015 14:58:42 +0300 Subject: [PATCH] better hotkey for toggling float mode --- rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc.lua b/rc.lua index eb642c7..6983674 100644 --- a/rc.lua +++ b/rc.lua @@ -470,7 +470,7 @@ clientkeys = awful.util.table.join( end), awful.key({ modkey, 'Shift' }, 't', function (c) c.ontop = not c.ontop end), awful.key({ modkey, 'Shift' }, 's', function (c) c.sticky = not c.sticky end), - awful.key({ modkey, 'Shift' }, 'f', awful.client.floating.toggle ), + awful.key({ modkey, }, '`', awful.client.floating.toggle ), awful.key({ modkey, 'Shift' }, 'm', function (c) c.maximized_horizontal = not c.maximized_horizontal