Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

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?

like image 888
ftravers Avatar asked Mar 10 '17 17:03

ftravers


People also ask

How do I remove the title bar in awesome?

titlebar. toggle(c) will do.


1 Answers

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

like image 79
Emmanuel Lepage Vallee Avatar answered Sep 30 '22 19:09

Emmanuel Lepage Vallee