Files
I-DeskPet/Modules/GetGifs.qml
T
2025-11-04 08:02:03 +01:00

14 lines
312 B
QML

import Quickshell.Io
Process {
id: getGifsProcess
property list<string> gifsList: []
command: ["sh", "-c", "./Scripts/files.sh"]
stdout: StdioCollector {
onStreamFinished: {
var gifs = this.text.trim().split("\n")
getGifsProcess.gifsList = gifs
}
}
}