Dialog borders.

This commit is contained in:
Kolan Sh 2021-05-14 19:15:24 +03:00
parent 402b4c4000
commit f128bf543f
1 changed files with 7 additions and 3 deletions

10
rc.lua
View File

@ -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" },