27 lines
489 B
QML
27 lines
489 B
QML
import Quickshell
|
|
|
|
Scope {
|
|
Time { id: timeSource }
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
PanelWindow {
|
|
required property var modelData
|
|
screen: modelData
|
|
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
}
|
|
|
|
implicitHeight: 30
|
|
|
|
ClockWidget {
|
|
anchors.centerIn: parent
|
|
time: timeSource.time
|
|
}
|
|
}
|
|
}
|
|
} |