Using print module and moved composition script

This commit is contained in:
m8in
2026-06-20 15:31:35 +02:00
parent 86be20d2bd
commit c7b4a4a17e
6 changed files with 101 additions and 87 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
source /cis/core/base.module.sh
base.loadModule composition
function startOwn() {
local _COMPOSITION
composition.printAll | while read -r _COMPOSITION; do
composition.start "${_COMPOSITION}"
done
}
startOwn && exit 0
exit 1