1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
-- {{{ 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 = "MPlayer" },
properties = { floating = true } },
{ rule = { class = "pinentry" },
properties = { floating = true } },
{ rule = { class = "gimp" },
properties = { floating = true } },
-- Size hint
-- See https://superuser.com/questions/347001/how-can-i-force-gvim-in-awesome-to-fill-the-screen
{ rule = { class = "Gvim" },
properties = { size_hints_honor = false } },
{ rule = { class = "XTerm" },
properties = { size_hints_honor = false } },
{ rule = { class = "URxvt" },
properties = { size_hints_honor = false } },
-- Set Firefox to always map on tags number 2 of screen 1.
-- { rule = { class = "Firefox" },
-- properties = { tag = tags[1][2] } },
}
-- }}}
|