More pets

This commit is contained in:
2025-11-04 08:02:03 +01:00
parent 9dd1a5430d
commit 4acc1556b2
9 changed files with 85 additions and 554 deletions
+14
View File
@@ -0,0 +1,14 @@
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
}
}
}