mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-26 19:58:35 +02:00
rules: ensure Pidgin's buddy list is master
If it comes after the conversation window, it should be set as a master.
This commit is contained in:
parent
d29b8fd257
commit
97c5b983e7
1 changed files with 3 additions and 1 deletions
|
@ -36,8 +36,10 @@ awful.rules.rules = {
|
||||||
-- See also tags.lua
|
-- See also tags.lua
|
||||||
-- Pidgin
|
-- Pidgin
|
||||||
{ rule = { class = "Pidgin" },
|
{ rule = { class = "Pidgin" },
|
||||||
except = { role = "buddy_list" }, -- buddy_list is the master
|
except = { role = "buddy_list" },
|
||||||
properties = { }, callback = awful.client.setslave },
|
properties = { }, callback = awful.client.setslave },
|
||||||
|
{ rule = { class = "Pidgin", role = "buddy_list" },
|
||||||
|
properties = { }, callback = awful.client.setmaster },
|
||||||
-- Skype
|
-- Skype
|
||||||
{ rule = { class = "Skipe" },
|
{ rule = { class = "Skipe" },
|
||||||
except = { role = nil }, -- should be the master
|
except = { role = nil }, -- should be the master
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue