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