mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-09 09:44:20 +02:00
signals: don't apply transparency to Firefox PIP window
This commit is contained in:
parent
52adad2eab
commit
26a3d833b8
1 changed files with 2 additions and 1 deletions
|
@ -84,7 +84,8 @@ client.add_signal("focus", function(c)
|
|||
end)
|
||||
client.add_signal("unfocus", function(c)
|
||||
c.border_color = beautiful.border_normal
|
||||
if not c.fullscreen then
|
||||
if (not c.fullscreen and
|
||||
not awful.rules.match_any(c, { name = { "Picture-in-Picture" } })) then
|
||||
c.opacity = 0.85
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue