27 lines
441 B
QML
27 lines
441 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import QtQuick
|
|
|
|
Singleton {
|
|
id: root
|
|
property string time
|
|
|
|
Process {
|
|
id: dateProc
|
|
command: ["date"]
|
|
running: true
|
|
|
|
stdout: StdioCollector {
|
|
onStreamFinished: root.time = this.text
|
|
}
|
|
}
|
|
|
|
Timer {
|
|
intervall: 1000
|
|
running: true
|
|
repeat: true
|
|
onTriggered: dateProc.running = true
|
|
}
|
|
} |