mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-21 01:25:42 +02:00
21 lines
774 B
Lua
21 lines
774 B
Lua
awful.rules.rules = {
|
|
-- All clients will match this rule.
|
|
{ rule = { },
|
|
properties = { border_width = beautiful.border_width,
|
|
border_color = beautiful.border_normal,
|
|
focus = true,
|
|
keys = config.keys.client,
|
|
buttons = config.mouse.client }},
|
|
{ rule = { class = "Emacs" },
|
|
properties = { tag = config.tags.emacs }},
|
|
{ rule = { name = "Iceweasel" },
|
|
properties = { tag = config.tags.www }},
|
|
{ rule = { name = "Firefox" },
|
|
properties = { tag = config.tags.www }},
|
|
{ rule = { name = "Chromium" },
|
|
properties = { tag = config.tags.www }},
|
|
{ rule = { class = "Pidgin" },
|
|
properties = { tag = config.tags.im }},
|
|
{ rule = { class = "URxvt" },
|
|
properties = { }, callback = awful.client.setslave },
|
|
}
|