mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-11 08:39:18 +00:00
19 lines
359 B
QML
19 lines
359 B
QML
import QtQuick
|
|
import qs.Settings
|
|
|
|
Rectangle {
|
|
width: textItem.paintedWidth
|
|
height: textItem.paintedHeight
|
|
color: "transparent"
|
|
|
|
Text {
|
|
id: textItem
|
|
text: Time.time
|
|
font.family: "Roboto"
|
|
font.weight: Font.Bold
|
|
font.pixelSize: 14
|
|
color: Theme.textPrimary
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|