update titlebar visibility based on workspace layout

This commit is contained in:
Izaya 2021-11-11 08:21:02 +11:00
parent 111502579f
commit ad0bd083a1
1 changed files with 5 additions and 3 deletions

8
rc.lua
View File

@ -261,13 +261,15 @@ awful.screen.connect_for_each_screen(function(s)
else -- portrait
awful.tag(tags, s, awful.layout.suit.fair.horizontal)
end
--[[
awful.tag.attached_connect_signal(nil, "tagged", function(tag)
for _,c in pairs(tag:clients()) do
c.titlebars_enabled = tag.layout == awful.layout.suit.floating
if tag.layout == awful.layout.suit.floating then
awful.titlebar.show(c)
else
awful.titlebar.hide(c)
end
end
end)
]]
-- Create a promptbox for each screen
s.mypromptbox = awful.widget.prompt()