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 Variants {
model: Quickshell.screens
PanelWindow {
property var modelData
screen: modelData
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
} }
Variants {
PanelWindow {
anchors.top: true
anchors.left: true
anchors.bottom: true
implicitWidth: 50
color: "#1a1b26"
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")
} }
} }
} }