26 lines
436 B
QML
26 lines
436 B
QML
import Quickshell
|
|
|
|
Scope {
|
|
|
|
Variants {
|
|
model: Quickshell.screens
|
|
|
|
PanelWindow {
|
|
required property var modelData
|
|
screen: modelData
|
|
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
right: true
|
|
}
|
|
|
|
implicitHeight: 30
|
|
|
|
|
|
ClockWidget {
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|
|
}
|
|
} |