65 lines
2.4 KiB
Lua
65 lines
2.4 KiB
Lua
|
|
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, tag = tags[1][12] } },
|
|
{ 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],
|
|
floating = false } },
|
|
{ rule = { class = "Pidgin" },
|
|
properties = { tag = tags[1][3]} },
|
|
{ rule = { role = "buddy_list" },
|
|
properties = { master = true } },
|
|
{ rule = { role = "conversation" },
|
|
callback = awful.client.setslave},
|
|
{ rule = { instance = "Irssi"},
|
|
properties = { tag = tags[1][3]} ,
|
|
callback = awful.client.setslave},
|
|
{ rule = { class = "Irssi"},
|
|
properties = { tag = tags[1][3]} ,
|
|
callback = awful.client.setslave},
|
|
{ rule = { class = "Claws-mail" },
|
|
properties = { tag = tags[1][4] } },
|
|
{ rule = { class = "Thunderbird" },
|
|
properties = { tag = tags[1][4] } },
|
|
{ rule = { class = "Claws-mail" },
|
|
properties = { tag = tags[1][4] } },
|
|
{ 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 } },
|
|
{ rule = { class = "Cellwriter" },
|
|
properties = { tag = tags[1][1],
|
|
ontop = true,
|
|
size_hints_honor = true,
|
|
float = true,
|
|
sticky = true,
|
|
fullscreen = true
|
|
} },
|
|
}
|