Merge pull request #5 from masterkorp/signals

Add missing spawn, position, force_screen and max_clients signals.
This commit is contained in:
Emmanuel Lepage Vallée 2013-03-05 21:11:02 -08:00
commit a492e488c7
1 changed files with 15 additions and 1 deletions

View File

@ -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