better hotkey for toggling float mode
This commit is contained in:
parent
3264bf7a19
commit
a3ae675e8e
1 changed files with 1 additions and 1 deletions
2
rc.lua
2
rc.lua
|
@ -470,7 +470,7 @@ clientkeys = awful.util.table.join(
|
||||||
end),
|
end),
|
||||||
awful.key({ modkey, 'Shift' }, 't', function (c) c.ontop = not c.ontop 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' }, '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',
|
awful.key({ modkey, 'Shift' }, 'm',
|
||||||
function (c)
|
function (c)
|
||||||
c.maximized_horizontal = not c.maximized_horizontal
|
c.maximized_horizontal = not c.maximized_horizontal
|
||||||
|
|
Loading…
Reference in a new issue