From c94a787f46a799a544871ce5d3099fa45928cf41 Mon Sep 17 00:00:00 2001 From: lucy Date: Tue, 20 Jan 2026 12:31:43 +0100 Subject: [PATCH] switch color generation to matugen --- modules/ipc/Ipc.qml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/modules/ipc/Ipc.qml b/modules/ipc/Ipc.qml index c17b096..a64d109 100644 --- a/modules/ipc/Ipc.qml +++ b/modules/ipc/Ipc.qml @@ -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] } }