From bc4a5f38c923ac0b04a233e8ed791e63b857b1a1 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 27 Mar 2014 13:50:19 +0100 Subject: [PATCH] manage signal handler: use awesome.startup The `manage` arg is gone. --- lib/awful/tag.lua.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/awful/tag.lua.in b/lib/awful/tag.lua.in index 0ec12c8e6..84edd36dd 100644 --- a/lib/awful/tag.lua.in +++ b/lib/awful/tag.lua.in @@ -572,12 +572,12 @@ function tag.attached_connect_signal(screen, ...) end end --- Register standards signals -capi.client.connect_signal("manage", function(c, startup) +-- Register standard signals. +capi.client.connect_signal("manage", function(c) -- If we are not managing this application at startup, -- move it to the screen where the mouse is. -- We only do it for "normal" windows (i.e. no dock, etc). - if not startup and c.type ~= "desktop" and c.type ~= "dock" then + if not awesome.startup and c.type ~= "desktop" and c.type ~= "dock" then if c.transient_for then c.screen = c.transient_for.screen if not c.sticky then