Add hotkey to manually toggle titlebar

Co-authored-by: Arkhist <peyrille.benjamin@gmail.com>
This commit is contained in:
Alice Gaudon 2021-02-17 11:38:02 +01:00
parent 4b93a05fa5
commit 93a3caf5a4
1 changed files with 10 additions and 1 deletions

View File

@ -532,7 +532,16 @@ clientkeys = gears.table.join(-- tiling
c.maximized_horizontal = not c.maximized_horizontal
c:raise()
end,
{ description = "(un)maximize horizontally", group = "client" }))
{ description = "(un)maximize horizontally", group = "client" }),
awful.key({ config.keys.modkey, "Shift"}, "p",
function(c)
awful.titlebar.toggle(c)
if c.maximized then
c.maximized = false
c.maximized = true
end
end,
{ description = "toggle titlebar", group = "client"}))
-- Bind all key numbers to tags.
-- Be careful: we use keycodes to make it work on any keyboard layout.