]> git.rmz.io Git - dotfiles.git/blob - awesome/rules.lua
add host variable to utils
[dotfiles.git] / awesome / rules.lua
1 -- {{{ Rules
2 awful.rules.rules = {
3 -- All clients will match this rule.
4 { rule = { },
5 properties = { border_width = beautiful.border_width,
6 border_color = beautiful.border_normal,
7 focus = awful.client.focus.filter,
8 keys = clientkeys,
9 buttons = clientbuttons } },
10 { rule = { class = "MPlayer" },
11 properties = { floating = true } },
12 { rule = { class = "pinentry" },
13 properties = { floating = true } },
14 { rule = { class = "gimp" },
15 properties = { floating = true } },
16 -- Set Firefox to always map on tags number 2 of screen 1.
17 -- { rule = { class = "Firefox" },
18 -- properties = { tag = tags[1][2] } },
19 }
20 -- }}}