35 lines
622 B
QML
35 lines
622 B
QML
|
import QtQuick
|
||
|
import Quickshell
|
||
|
|
||
|
import "../../../config"
|
||
|
|
||
|
Rectangle {
|
||
|
id: root
|
||
|
|
||
|
width: text.width + 5
|
||
|
height: text.height + 5
|
||
|
implicitWidth: width
|
||
|
border.color: Config.catppuccin.rosewater
|
||
|
border.width: 0
|
||
|
radius: 5
|
||
|
color: "transparent"
|
||
|
|
||
|
Text {
|
||
|
id: text
|
||
|
anchors.centerIn: parent
|
||
|
property var date: Date()
|
||
|
|
||
|
text: Qt.formatDateTime(clock.date, "hh mm")
|
||
|
|
||
|
font.family: "JetBrainsMono NF Mono"
|
||
|
font.pointSize: 15
|
||
|
|
||
|
color: Config.catppuccin.text
|
||
|
}
|
||
|
|
||
|
SystemClock {
|
||
|
id: clock
|
||
|
precision: SystemClock.Seconds
|
||
|
}
|
||
|
}
|