16 lines
348 B
QML
16 lines
348 B
QML
import QtQuick
|
|
import Quickshell
|
|
import "." as M
|
|
|
|
Text {
|
|
SystemClock {
|
|
id: clock
|
|
precision: SystemClock.Minutes
|
|
}
|
|
|
|
text: Qt.formatDateTime(clock.date, "ddd, dd. MMM HH:mm")
|
|
color: M.Theme.base05
|
|
font.pixelSize: M.Theme.fontSize + 1
|
|
font.family: M.Theme.fontFamily
|
|
verticalAlignment: Text.AlignVCenter
|
|
}
|