From 4d0173f7e60fae8e3f08463737598c621e8f3fcc Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Wed, 17 Feb 2021 11:24:54 +0100 Subject: [PATCH] Hide titlebar for clients that request so Co-authored-by: Arkhist --- simple/init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/simple/init.lua b/simple/init.lua index 3f09ce3..de0cdda 100644 --- a/simple/init.lua +++ b/simple/init.lua @@ -720,6 +720,10 @@ client.connect_signal("request::titlebars", function(c) }, layout = wibox.layout.align.horizontal } + + if c.requests_no_titlebar then + awful.titlebar.hide(c) + end end) -- Enable sloppy focus, so that focus follows mouse.