From 6e3672af7ba05406ad344141655f239cd39db944 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 1 Jun 2017 13:59:14 +0200 Subject: [PATCH] fix firefox activate filter --- .config/awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2