mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-21 17:39:00 +02:00
Initial commit.
This commit is contained in:
commit
c130561cb7
17 changed files with 1029 additions and 0 deletions
21
rc/rules.lua
Normal file
21
rc/rules.lua
Normal file
|
@ -0,0 +1,21 @@
|
|||
awful.rules.rules = {
|
||||
-- All clients will match this rule.
|
||||
{ rule = { },
|
||||
properties = { border_width = beautiful.border_width,
|
||||
border_color = beautiful.border_normal,
|
||||
focus = true,
|
||||
keys = config.keys.client,
|
||||
buttons = config.mouse.client }},
|
||||
{ rule = { class = "Emacs" },
|
||||
properties = { tag = config.tags.emacs }},
|
||||
{ rule = { name = "Iceweasel" },
|
||||
properties = { tag = config.tags.www }},
|
||||
{ rule = { name = "Firefox" },
|
||||
properties = { tag = config.tags.www }},
|
||||
{ rule = { name = "Chromium" },
|
||||
properties = { tag = config.tags.www }},
|
||||
{ rule = { class = "Pidgin" },
|
||||
properties = { tag = config.tags.im }},
|
||||
{ rule = { class = "URxvt" },
|
||||
properties = { }, callback = awful.client.setslave },
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue