How to remove title bar in awesome window manager ver >4

ftravers picture ftravers · Mar 10, 2017 · Viewed 16.3k times · Source

I've recently upgraded my machine, and am now at awesome version 4.x. There is now a titlebar of sorts with close, ontop, floating, maximized, etc... buttons on right. Can I get rid of this? What config would I use to have this be universally turned off?

Answer

Emmanuel Lepage Vallee picture Emmanuel Lepage Vallee · Mar 10, 2017

In your rc.lua file, look for

-- Add title bars to normal clients and dialogs
{ rule_any = {type = { "normal", "dialog" }
  }, properties = { titlebars_enabled = true }
},

and change

titlebars_enabled = true

to

titlebars_enabled = false