switch color generation to matugen

This commit is contained in:
lucy 2026-01-20 12:31:43 +01:00
parent fd501590ed
commit c94a787f46

View File

@ -9,7 +9,6 @@ Item {
function setWall(newWall: string): void { function setWall(newWall: string): void {
console.log(Settings.config.generateScheme); console.log(Settings.config.generateScheme);
Settings.config.currentWall = newWall; Settings.config.currentWall = newWall;
kittyKiller.startDetached();
if (Settings.config.generateScheme === true) { if (Settings.config.generateScheme === true) {
wallustRunner.startDetached(); wallustRunner.startDetached();
} }
@ -23,12 +22,7 @@ Item {
} }
Process { Process {
id: wallustRunner id: wallustRunner
property string cmd: "wallust run " + Settings.config.currentWall property string cmd: "matugen image " + Settings.config.currentWall
command: ["sh", "-c", cmd]
}
Process {
id: kittyKiller
property string cmd: "pkill -SIGUSR1 kitty"
command: ["sh", "-c", cmd] command: ["sh", "-c", cmd]
} }
} }