2010-06-06 02:56:07 +00:00
|
|
|
|
|
|
|
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 = "pinentry" },
|
|
|
|
properties = { floating = true } },
|
|
|
|
{ rule = { class = "gimp" },
|
|
|
|
properties = { floating = true } },
|
|
|
|
-- Set Firefox to always map on tags number 2 of screen 1.
|
2011-04-06 00:09:56 +00:00
|
|
|
{ rule = { class = "Firefox", instance = "Navigator" },
|
|
|
|
properties = { tag = tags[2][2],
|
2010-09-03 22:52:38 +00:00
|
|
|
floating = false } },
|
2010-06-06 02:56:07 +00:00
|
|
|
{ rule = { class = "Pidgin" },
|
2011-04-06 00:09:56 +00:00
|
|
|
properties = { tag = tags[2][3]} },
|
2010-06-06 02:56:07 +00:00
|
|
|
{ rule = { role = "buddy_list" },
|
|
|
|
properties = { master = true } },
|
2010-09-01 15:52:20 +00:00
|
|
|
{ rule = { role = "conversation" },
|
|
|
|
callback = awful.client.setslave},
|
2011-04-06 00:09:56 +00:00
|
|
|
{ rule = { instance = "Weechat"},
|
|
|
|
properties = { tag = tags[2][3]} ,
|
2011-01-06 01:25:46 +00:00
|
|
|
callback = awful.client.setslave},
|
2010-09-01 15:52:20 +00:00
|
|
|
{ rule = { class = "Irssi"},
|
2011-04-06 00:09:56 +00:00
|
|
|
properties = { tag = tags[2][3]} ,
|
2010-09-01 15:52:20 +00:00
|
|
|
callback = awful.client.setslave},
|
2010-06-24 16:14:00 +00:00
|
|
|
{ rule = { class = "Claws-mail" },
|
2011-04-06 00:09:56 +00:00
|
|
|
properties = { tag = tags[2][4] } },
|
2010-06-06 02:56:07 +00:00
|
|
|
{ rule = { class = "Gmpc" },
|
|
|
|
properties = { tag = tags[1][6] } },
|
|
|
|
{ rule = { class = "Deluge" },
|
|
|
|
properties = { tag = tags[1][7] } },
|
|
|
|
{ rule = { class = "Xhtop" },
|
|
|
|
properties = { tag = tags[1][22] } },
|
2010-06-24 16:14:00 +00:00
|
|
|
{ rule = { class = "Cellwriter" },
|
|
|
|
properties = { tag = tags[1][1],
|
|
|
|
ontop = true,
|
|
|
|
size_hints_honor = true,
|
|
|
|
float = true,
|
|
|
|
sticky = true,
|
|
|
|
fullscreen = true
|
|
|
|
} },
|
2010-06-06 02:56:07 +00:00
|
|
|
}
|