19 lines
459 B
QML
19 lines
459 B
QML
import Quickshell
|
|
import QtQuick
|
|
|
|
BarPill {
|
|
SystemClock { id: clock; precision: SystemClock.Minutes }
|
|
|
|
Text {
|
|
text: ""
|
|
color: Theme.aqua
|
|
font.pixelSize: Theme.fontSize
|
|
font.family: Theme.font
|
|
}
|
|
Text {
|
|
text: Qt.formatDateTime(clock.date, "ddd dd/MM")
|
|
color: Theme.text
|
|
font.pixelSize: Theme.fontSize
|
|
font.family: Theme.font
|
|
}
|
|
}
|