2010-06-06 02:56:07 +00:00
|
|
|
|
|
|
|
-- {{{ Rules
|
|
|
|
awful.rules.rules = {
|
|
|
|
-- All clients will match this rule.
|
|
|
|
{ rule = { },
|
|
|
|
properties = { border_width = beautiful.border_width,
|
|
|
|
border_color = beautiful.border_normal,
|
|
|
|
focus = true,
|
|
|
|
size_hints_honor = false,
|
|
|
|
keys = clientkeys,
|
|
|
|
buttons = clientbuttons } },
|
|
|
|
{ rule = { class = "MPlayer" },
|
|
|
|
properties = { floating = true,
|
|
|
|
size_hints_honor = true } },
|
|
|
|
{ rule = { class = "Passprompt" },
|
|
|
|
properties = { floating = true,
|
|
|
|
ontop = true,
|
|
|
|
focus = true } },
|
|
|
|
{ rule = { class = "Teardrop" },
|
|
|
|
properties = { floating = true } },
|
|
|
|
{ rule = { class = "pinentry" },
|
|
|
|
properties = { floating = true } },
|
|
|
|
{ rule = { class = "gimp" },
|
|
|
|
properties = { floating = true } },
|
|
|
|
-- Set Firefox to always map on tags number 2 of screen 1.
|
|
|
|
{ rule = { class = "Firefox" },
|
|
|
|
properties = { tag = tags[1][2] } },
|
|
|
|
{ rule = { class = "Pidgin" },
|
|
|
|
properties = { tag = tags[1][3] } },
|
|
|
|
{ rule = { role = "buddy_list" },
|
|
|
|
properties = { master = true } },
|
|
|
|
{ rule = { class = "Thunderbird" },
|
|
|
|
properties = { tag = tags[1][4] } },
|
2010-06-18 21:13:19 +00:00
|
|
|
{ rule = { class = "Claws-mail" },
|
|
|
|
properties = { tag = tags[1][4] } },
|
2010-06-06 02:56:07 +00:00
|
|
|
{ rule = { class = "Sunbird-bin" },
|
|
|
|
properties = { tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "Gmpc" },
|
|
|
|
properties = { tag = tags[1][6] } },
|
|
|
|
{ rule = { class = "Deluge" },
|
|
|
|
properties = { tag = tags[1][7] } },
|
|
|
|
{ rule = { class = "Xhtop" },
|
|
|
|
properties = { tag = tags[1][22] } },
|
|
|
|
--{ rule = { class = "OpenOffice.org 3.2" },
|
|
|
|
--properties = { floating = false } },
|
|
|
|
}
|
|
|
|
-- }}}
|