mirror of
https://github.com/vincentbernat/i3wm-configuration.git
synced 2025-06-23 18:28:34 +02:00
signals: don't make a fullscreen app transparent
This will work for browsers and video players. I don't see a case where such a window should be transparent.
This commit is contained in:
parent
af075eaac4
commit
ee86787d62
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ client.add_signal("focus", function(c)
|
||||||
end)
|
end)
|
||||||
client.add_signal("unfocus", function(c)
|
client.add_signal("unfocus", function(c)
|
||||||
c.border_color = beautiful.border_normal
|
c.border_color = beautiful.border_normal
|
||||||
if not awful.rules.match_any(c, { instance = { "plugin-container", "vlc" } }) then
|
if not c.fullscreen then
|
||||||
c.opacity = 0.85
|
c.opacity = 0.85
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue