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