Files
HyprNix/user/Time.qml
2025-11-10 13:58:32 +01:00

25 lines
419 B
QML

import Quickshell
import Quickshell.Io
import QtQuick
Scope {
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
}
}