mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-21 09:35:40 +02:00
22 lines
774 B
Lua
22 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 },
|
||
|
}
|