Files
nix/home/common/programs/hyprland/quickshell/Time.qml
T
Miguel Palhas a849ff0c7b wip
2025-06-15 09:45:50 +01:00

27 lines
386 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 {
interval: 1000
running: true
repeat: true
onTriggered: dateProc.running = true
}
}