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:
Vincent Bernat 2013-11-17 21:49:04 +01:00
parent af075eaac4
commit ee86787d62

View file

@ -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)