mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-07-16 05:04:21 +02:00
signals: when using Google Meet, don't change opacity
This commit is contained in:
parent
c3f44fb0c3
commit
9704e2c1ec
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 (c.class == "Chromium" and c.name:sub(1, #"Meet –") == "Meet –")) then
|
||||
c.opacity = 0.85
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue