23 lines
427 B
QML
23 lines
427 B
QML
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
|
|
}
|
|
}
|