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 import QtQuick
ShellRoot { ShellRoot {
id: root
SystemClock {
id: clock
precision: SystemClock.Minutes
}
Variants { Variants {
model: Quickshell.screens
PanelWindow { PanelWindow {
property var modelData
screen: modelData
anchors.top: true anchors.top: true
anchors.left: true anchors.left: true
anchors.bottom: true anchors.bottom: true
implicitWidth: 50 implicitWidth: 50
color: "#1a1b26" color: "#1a1b26"
SystemClock {
id: clock
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")
} }
} }
} }