From: martin f. krafft Date: Thu, 1 Jun 2017 11:59:14 +0000 (+0200) Subject: fix firefox activate filter X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/6e3672af7ba05406ad344141655f239cd39db944 fix firefox activate filter --- diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index dcbf52d..4aa2eba 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -745,7 +745,7 @@ client.connect_signal("focus", function(c) c.border_color = beautiful.border_foc client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) awful.ewmh.add_activate_filter(function(c, context, hints) - if context == "ewmh" and c.class == "Firefox-esr" or c.class == "Firefox" then return false end + if context == "ewmh" and (c.class == "Firefox-esr" or c.class == "Firefox") then return false end end) -- vim:ft=lua:sw=4:sts=4:ts=4:et