summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/shell/quickshell/Clock.qml
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2025-09-02 12:42:34 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2025-09-02 12:42:34 +0200
commitf6955608ede3e4a688a63457b2ffe9829e558d27 (patch)
tree3c1842c59a422dd89b97a3d93714d1743e67c5d4 /accounts/gkleen@sif/shell/quickshell/Clock.qml
parenta4e9116570c5bc6fee8368d9ce16a24547026cba (diff)
downloadnixos-f6955608ede3e4a688a63457b2ffe9829e558d27.tar
nixos-f6955608ede3e4a688a63457b2ffe9829e558d27.tar.gz
nixos-f6955608ede3e4a688a63457b2ffe9829e558d27.tar.bz2
nixos-f6955608ede3e4a688a63457b2ffe9829e558d27.tar.xz
nixos-f6955608ede3e4a688a63457b2ffe9829e558d27.zip
...
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/Clock.qml')
-rw-r--r--accounts/gkleen@sif/shell/quickshell/Clock.qml22
1 files changed, 15 insertions, 7 deletions
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 {
162 Layout.column: 1 162 Layout.column: 1
163 Layout.fillWidth: true 163 Layout.fillWidth: true
164 164
165 delegate: Text { 165 delegate: WrapperItem {
166 required property string shortName 166 required property string shortName
167 167
168 font.pointSize: 10 168 width: dowLabel.contentWidth + 6
169 font.family: "Fira Mono"
170 169
171 text: shortName 170 Text {
172 color: "#ffcc66" 171 id: dowLabel
173 172
174 horizontalAlignment: Text.AlignRight 173 anchors.fill: parent
175 verticalAlignment: Text.AlignVCenter 174
175 font.pointSize: 10
176 font.family: "Fira Sans"
177
178 text: parent.shortName
179 color: "#ffcc66"
180
181 horizontalAlignment: Text.AlignHCenter
182 verticalAlignment: Text.AlignVCenter
183 }
176 } 184 }
177 } 185 }
178 186