mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
12 lines
195 B
QML
12 lines
195 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import "root:/DataSources"
|
|
|
|
Text {
|
|
id: clock
|
|
font.pointSize: 13
|
|
color: Stylix.base0F
|
|
Layout.alignment: Qt.AlignCenter
|
|
|
|
text: Time.time
|
|
}
|