20 lines
331 B
QML
Executable File
20 lines
331 B
QML
Executable File
import Quickshell
|
|
import Quickshell.Io
|
|
import QtQuick
|
|
|
|
import "../common" as Common
|
|
|
|
Item {
|
|
id: root
|
|
width: text.width + 15
|
|
height: text.height
|
|
Common.Container {}
|
|
Text {
|
|
anchors.centerIn: parent
|
|
id: text
|
|
text: ClockData.time
|
|
font.pointSize: 10.25
|
|
color: "white"
|
|
}
|
|
}
|