Dialog borders.
This commit is contained in:
parent
402b4c4000
commit
f128bf543f
10
rc.lua
10
rc.lua
|
@ -736,9 +736,13 @@ awful.rules.rules = {
|
||||||
}
|
}
|
||||||
}, properties = { floating = true }},
|
}, properties = { floating = true }},
|
||||||
|
|
||||||
-- Add titlebars to normal clients and dialogs
|
-- Default 'Normal' clients properties
|
||||||
{ rule_any = {type = { "normal", "dialog" }
|
{ rule_any = {type = { "normal" }
|
||||||
}, properties = { titlebars_enabled = false }
|
}, properties = { titlebars_enabled = false; border_width = 0; floating = false; }
|
||||||
|
},
|
||||||
|
-- Default 'Dialog' clients properties
|
||||||
|
{ rule_any = {type = { "dialog" }
|
||||||
|
}, properties = { titlebars_enabled = true; border_width = 2; }
|
||||||
},
|
},
|
||||||
|
|
||||||
-- { rule = { class = "URxvt" },
|
-- { rule = { class = "URxvt" },
|
||||||
|
|
Loading…
Reference in New Issue