wallust integration

This commit is contained in:
Zacharias-Brohn
2025-11-13 01:56:43 +01:00
parent 374842b321
commit 52a382b0ad
5 changed files with 43 additions and 8 deletions
+22
View File
@@ -0,0 +1,22 @@
pragma Singleton
import Quickshell
import Quickshell.Io
import QtQuick
Singleton {
id: root
property var args
function generateColors(wallpaperPath) {
root.args = wallpaperPath;
wallustProc.running = true;
}
Process {
id: wallustProc
command: ["wallust", "run", root.args, "--palette=dark16", "--ignore-sequence=cursor", "--threshold=9" ]
running: false
}
}