quickshell/modules/bar/Clock.qml
2025-12-21 20:59:33 +01:00

13 lines
202 B
QML

import QtQuick
import Quickshell
Item {
id: root
implicitWidth: clockText.text.length + 10
Text {
id: clockText
anchors.centerIn: parent
text: "sigma balls"
}
}