This commit is contained in:
2025-10-30 14:39:51 +01:00
parent dbcde131aa
commit 9dd1a5430d
6 changed files with 594 additions and 71 deletions
+14
View File
@@ -0,0 +1,14 @@
import Quickshell
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
}
}
}