From 136862c3965ab1a3bb1ab999112699f7eb81061f Mon Sep 17 00:00:00 2001 From: Alfredo Palhares Date: Tue, 5 Mar 2013 21:17:13 +0000 Subject: [PATCH] Add missing spawn, position, force_screen and max_clients signals. --- init.lua | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 6666d96..4ab2822 100644 --- a/init.lua +++ b/init.lua @@ -11,7 +11,21 @@ local module = {} -------------------------------INIT------------------------------ -for _,sig in ipairs({"property::exclusive","property::init","property::volatile","property::focus_on_new","property::instances","property::match","property::class"})do +local signals = { + "property::exclusive", + "property::init", + "property::volatile", + "property::focus_on_new", + "property::instances", + "property::match", + "property::class", + "property::spawn", + "property::position", + "property::force_screen", + "property::max_clients", + +} +for _,sig in ipairs(signals) do capi.tag.add_signal(sig) end