non important commit

This commit is contained in:
benstrb 2026-03-07 20:14:55 +01:00
parent 853258afe3
commit de83e0737c

View file

@ -2,24 +2,30 @@ import Quickshell
import QtQuick
ShellRoot {
id: root
Variants {
model: Quickshell.screens
PanelWindow {
property var modelData
screen: modelData
anchors.top: true
anchors.left: true
anchors.bottom: true
implicitWidth: 50
color: "#1a1b26"
SystemClock {
id: clock
precision: SystemClock.Minutes
}
Variants {
PanelWindow {
anchors.top: true
anchors.left: true
anchors.bottom: true
implicitWidth: 50
color: "#1a1b26"
Text {
anchors.centerIn: parent
color: "#FFFFFF"
font.pixelSize: 14
text: Qt.formatDateTime(clock.date, "hh\nmm")
}
}
}