modularized config file
This commit is contained in:
parent
d3fa48bad4
commit
9e434b8a59
7 changed files with 397 additions and 437 deletions
45
rules.lua
Normal file
45
rules.lua
Normal file
|
@ -0,0 +1,45 @@
|
|||
|
||||
-- {{{ 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] } },
|
||||
{ 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 } },
|
||||
}
|
||||
-- }}}
|
Loading…
Add table
Add a link
Reference in a new issue