non important commit

This commit is contained in:
benstrb 2026-02-28 23:47:15 +01:00
parent fcf6eeca8e
commit e11313630a

View file

@ -3,23 +3,26 @@ import QtQuick
ShellRoot { ShellRoot {
id: root id: root
PanelWindow {
anchors.top: true
anchors.left: true
anchors.bottom: true
implicitWidth: 50
color: "#1a1b26"
SystemClock { SystemClock {
id: clock id: clock
precision: SystemClock.Minutes precision: SystemClock.Minutes
} }
Text { Variants {
anchors.centerIn: parent PanelWindow {
color: "#FFFFFF" anchors.top: true
font.pixelSize: 14 anchors.left: true
text: Qt.formatDateTime(clock.date, "hh\nmm") anchors.bottom: true
implicitWidth: 50
color: "#1a1b26"
Text {
anchors.centerIn: parent
color: "#FFFFFF"
font.pixelSize: 14
text: Qt.formatDateTime(clock.date, "hh\nmm")
}
} }
} }
} }