non important commit

This commit is contained in:
benstrb 2026-02-28 23:35:00 +01:00
parent 8963772181
commit fcf6eeca8e

View file

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