Add rules again

This commit is contained in:
Guillaume Dott 2015-05-20 11:40:13 +02:00
parent b959b704c7
commit 2bc8cb3581

14
rc.lua
View File

@ -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)