quickshell/modules/bar/Clock.qml

13 lines
202 B
QML
Raw Normal View History

2025-12-21 20:59:33 +01:00
import QtQuick
import Quickshell
Item {
id: root
implicitWidth: clockText.text.length + 10
Text {
id: clockText
anchors.centerIn: parent
text: "sigma balls"
}
}