From 274f3301a4f485b2af77e5935de8ae7567dfe6f4 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Thu, 29 Sep 2016 14:55:31 +0200 Subject: [PATCH] replace custom firefox focus hack with new activate filter --- .config/awesome/rc.lua | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index ee17164..b2b49c3 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -666,14 +666,6 @@ end) client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end) client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end) --- https://www.mail-archive.com/awesome@naquadah.org/msg08285.html -client.disconnect_signal("request::activate", awful.ewmh.activate) -client.connect_signal("request::activate", function(c, context, hints) - if c.class == "Firefox" and context == "ewmh" then - return - end - return awful.ewmh.activate(c, context, hints) -end) --- }}} +awful.ewmh.add_activate_filter(function(c) if c.class == "Firefox" then return false end end) -- vim:ft=lua:sw=4:sts=4:ts=4:et -- 2.39.2