blob: 8254890323701c1c27129fb7479b5aae4bf5d1ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import Quickshell // for PanelWindow
import Quickshell.Io // for Process
import QtQuick // for Text
Scope {
id: root
property string time
Variants {
model: Quickshell.screens
PanelWindow {
required property var modelData
screen: modelData
anchors {
bottom: true
left: true
right: true
}
implicitHeight: 30
Text {
anchors.centerIn: parent
text: root.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
}
}
|