Prevent focus stealing for Thunderbird and Firefox

This commit is contained in:
Guillaume Dott 2015-06-05 15:57:40 +02:00
parent 5d26d9536d
commit d89288d7b2

2
rc.lua
View File

@ -116,6 +116,7 @@ tyrannical.tags = {
exclusive = true, exclusive = true,
screen = {1,2}, screen = {1,2},
layout = awful.layout.suit.max, layout = awful.layout.suit.max,
no_focus_stealing_in = true,
class = {"Firefox", "Iceweasel", "Chromium"}, class = {"Firefox", "Iceweasel", "Chromium"},
exec_once = {"firefox -P default"} exec_once = {"firefox -P default"}
}, },
@ -139,6 +140,7 @@ tyrannical.tags = {
exclusive = true, exclusive = true,
screen = screen.count()>1 and 2 or 1, screen = screen.count()>1 and 2 or 1,
layout = awful.layout.suit.max, layout = awful.layout.suit.max,
no_focus_stealing_in = true,
class = {"Thunderbird", "Icedove"}, class = {"Thunderbird", "Icedove"},
exec_once = {"thunderbird"}, exec_once = {"thunderbird"},
}, },