signals: don't change opacity of vlc window

This commit is contained in:
Vincent Bernat 2013-08-07 17:42:25 +02:00
parent 505477db76
commit 17da10b1ef

View file

@ -81,7 +81,7 @@ client.add_signal("focus", function(c)
end)
client.add_signal("unfocus", function(c)
c.border_color = beautiful.border_normal
if not awful.rules.match_any(c, { instance = { "plugin-container" } }) then
if not awful.rules.match_any(c, { instance = { "plugin-container", "vlc" } }) then
c.opacity = 0.85
end
end)