Files
HyprNix/user/Bar.qml
2025-11-11 23:58:23 +01:00

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
}
}
}
}