some state nonsense

This commit is contained in:
2026-06-14 15:52:46 +01:00
parent 269b806af5
commit a8a69c116f
4 changed files with 135 additions and 17 deletions

View File

@@ -28,11 +28,11 @@ Singleton {
Process {
id: dateProc
command: ["date"]
command: ["date", "+%A %B %d %Y"]
running: true
stdout: StdioCollector {
onStreamFinished: root.time = this.text
onStreamFinished: root.date = this.text
}
}
@@ -41,6 +41,9 @@ Singleton {
repeat: true
running: true
onTriggered: timeProc.running = true
onTriggered: {
timeProc.running = true;
dateProc.running = true;
}
}
}