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

29 lines
419 B
QML

import Quickshell
import Quickshell.Io
import QtQuick
Scope {
Variants {
model: Quickshell.screens;
delegate: Component {
PanelWindow {
property var modelData
screen: modelData
anchors {
top: true
left: true
right: true
}
implicitHeight: 30
ClockWidget {
anchors.centerIn: parent
}
}
}
}
}