Add missing spawn, position, force_screen and max_clients signals.
This commit is contained in:
parent
b5a1221fb0
commit
136862c396
16
init.lua
16
init.lua
|
@ -11,7 +11,21 @@ local module = {}
|
||||||
|
|
||||||
-------------------------------INIT------------------------------
|
-------------------------------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)
|
capi.tag.add_signal(sig)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue