From 28334adc6b899272aa134ed5e0bbcb2e0f8712e5 Mon Sep 17 00:00:00 2001 From: cuu Date: Thu, 30 Aug 2018 21:15:47 +0800 Subject: [PATCH] ... --- awesome/rc.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/awesome/rc.lua b/awesome/rc.lua index 8888130..f378bce 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -385,6 +385,10 @@ function awful.ewmh.activate(c) client.focus = c end + if c.class:lower() == "retroarch" then + c:lower() + end + end end client.connect_signal("request::activate", awful.ewmh.activate) @@ -394,6 +398,8 @@ client.connect_signal("property::fullscreen", function (c) c.fullscreen = false c.ontop = false c.focus=false + c:lower() + end)