diff --git a/rc.lua b/rc.lua index 9e3c994..0fdad5b 100644 --- a/rc.lua +++ b/rc.lua @@ -568,6 +568,20 @@ globalkeys = awful.util.table.join( root.keys(globalkeys) -- }}} +-- {{{ Rules +-- Rules to apply to new clients (through the "manage" signal). +awful.rules.rules = { + -- All clients will match this rule. + { rule = { }, + properties = { border_width = beautiful.border_width, + border_color = beautiful.border_normal, + focus = awful.client.focus.filter, + raise = true, + keys = clientkeys, + buttons = clientbuttons } }, +} +-- }}} + -- {{{ Signals -- Signal function to execute when a new client appears. client.connect_signal("manage", function (c, startup)