From f6955608ede3e4a688a63457b2ffe9829e558d27 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Tue, 2 Sep 2025 12:42:34 +0200 Subject: ... --- accounts/gkleen@sif/shell/quickshell/Clock.qml | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) (limited to 'accounts/gkleen@sif/shell/quickshell/Clock.qml') diff --git a/accounts/gkleen@sif/shell/quickshell/Clock.qml b/accounts/gkleen@sif/shell/quickshell/Clock.qml index a1872ff5..edce57e3 100644 --- a/accounts/gkleen@sif/shell/quickshell/Clock.qml +++ b/accounts/gkleen@sif/shell/quickshell/Clock.qml @@ -162,17 +162,25 @@ Item { Layout.column: 1 Layout.fillWidth: true - delegate: Text { + delegate: WrapperItem { required property string shortName - font.pointSize: 10 - font.family: "Fira Mono" + width: dowLabel.contentWidth + 6 - text: shortName - color: "#ffcc66" + Text { + id: dowLabel - horizontalAlignment: Text.AlignRight - verticalAlignment: Text.AlignVCenter + anchors.fill: parent + + font.pointSize: 10 + font.family: "Fira Sans" + + text: parent.shortName + color: "#ffcc66" + + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + } } } -- cgit v1.2.3