-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.lua
31 lines (31 loc) · 1.17 KB
/
rules.lua
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
29
30
31
-- {{{ 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 = "pinentry" },
properties = { floating = true } },
{ rule = { class = "MPlayer" },
properties = { floating = true } },
{ rule = { class = "Gimp" },
properties = { tag = tags[1][7],
floating = true } },
{ rule = { class = "Firefox" },
properties = { tag = tags[1][8] } },
{ rule = { instance = "Navigator", class = "Firefox" },
properties = { floating = false } },
{ rule = { class = "Opera" },
properties = { tag = tags[1][8] } },
{ rule = { instance = "opera", class = "Opera" },
properties = { floating = false } },
{ rule = { instance = "xmpp-irc-email" },
properties = { tag = tags[1][9],
floating = false } },
{ rule = { class = "libreoffice-writer" },
properties = { tag = tags[1][4] } },
}
-- }}}