2012-07-17 14:50:02 +04: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,
|
|
|
|
keys = clientkeys,
|
|
|
|
buttons = clientbuttons } },
|
|
|
|
{ rule = { class = "URxvt" },
|
|
|
|
properties = { tag = tags[1][1] } },
|
|
|
|
{ rule = { class = "Firefox" },
|
|
|
|
properties = { tag = tags[1][2] } },
|
|
|
|
{ rule = { class = "VirtualBox" },
|
|
|
|
properties = { tag = tags[1][3] } },
|
|
|
|
{ rule = { class = "Gimp" },
|
|
|
|
properties = { floating = true, tag = tags[1][4] } },
|
|
|
|
{ rule = { class = "Soffice" },
|
|
|
|
properties = { floating = false, tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "libreoffice-writer" },
|
|
|
|
properties = { floating = false, tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "libreoffice-calc" },
|
|
|
|
properties = { floating = false, tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "libreoffice-draw" },
|
|
|
|
properties = { floating = false, tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "libreoffice-base" },
|
|
|
|
properties = { floating = false, tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "libreoffice-math" },
|
|
|
|
properties = { floating = false, tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "libreoffice-impress" },
|
|
|
|
properties = { floating = false, tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "libreoffice-startcenter" },
|
|
|
|
properties = { floating = false, tag = tags[1][5] } },
|
2012-08-13 13:08:48 +04:00
|
|
|
{ rule = { class = "Lyx" },
|
|
|
|
properties = { tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "Evince" },
|
|
|
|
properties = { tag = tags[1][5] } },
|
|
|
|
{ rule = { class = "Qt Jambi application" },
|
|
|
|
properties = { tag = tags[1][6] } },
|
2012-07-17 14:50:02 +04:00
|
|
|
{ rule = { class = "Pidgin" },
|
|
|
|
properties = { tag = tags[1][9] } },
|
|
|
|
{ rule = { class = "Stardict" },
|
|
|
|
properties = { tag = tags[1][8] } },
|
|
|
|
{ rule = { class = "MPlayer" },
|
|
|
|
properties = { floating = true } },
|
2012-07-18 16:45:57 +04:00
|
|
|
-- XTerm на пятом и шестом теге первого экрана
|
|
|
|
{ rule = { class = "XTerm" }, callback = function(c) c:tags({tags[1][5], tags[1][6]}) end},
|
2012-07-17 14:50:02 +04:00
|
|
|
}
|
|
|
|
-- }}}
|
|
|
|
|
|
|
|
|