summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rc.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.lua b/rc.lua
index 53f4987..5a096e5 100644
--- a/rc.lua
+++ b/rc.lua
@@ -199,8 +199,8 @@ client.connect_signal("manage", function (c, startup)
-- put new clients at the end
awful.client.setslave(c)
- -- give the new client focus
- if c.focusable then
+ -- give the new client focus if it spawns on the focused page
+ if c.focusable and c.first_tag == mouse.screen.selected_tag then
-- use pcall() because the client might be gone by the time we get to it
gears.timer.delayed_call(pcall, function() c:jump_to(false) end)
end