nosignal-shell/modules/bar/components/Clock.qml
2 * r + 2 * t d54df2792a feat: bar panel preset
Make presets more flexible
Fix workspaces when show windows disabled
Make rounded option for workspaces
2025-05-01 00:56:55 +10:00

27 lines
593 B
QML

import "root:/widgets"
import "root:/services"
import "root:/config"
import QtQuick
StyledRect {
id: root
property color colour: Appearance.colours.peach
MaterialIcon {
id: icon
text: "calendar_month"
color: root.colour
}
AnchorText {
prevAnchor: icon
horizontalAlignment: StyledText.AlignHCenter
text: root.vertical ? Time.format("hh\nmm") : Time.format("hh:mm • dddd, dd MMMM")
font.pointSize: Appearance.font.size.smaller
font.family: Appearance.font.family.mono
color: root.colour
}
}