15 lines
358 B
QML
15 lines
358 B
QML
import Quickshell.Io
|
|
|
|
Process {
|
|
id: getGifsProcess
|
|
property list<string> gifsList: []
|
|
command: ["sh", "-c", "/home/inorishio/.config/quickshell/QtDesktopPet/Scripts/gifs.sh"]
|
|
stdout: StdioCollector {
|
|
onStreamFinished: {
|
|
var gifs = this.text.trim().split("\n")
|
|
getGifsProcess.gifsList = gifs
|
|
}
|
|
}
|
|
|
|
}
|