mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-08 00:09:27 -05:00
22 lines
516 B
QML
22 lines
516 B
QML
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import QtQuick
|
|
|
|
Rectangle {
|
|
id: rect
|
|
readonly property string dialStyle: Config.options.background.clock.cookie.dialNumberStyle
|
|
|
|
StyledText {
|
|
anchors.centerIn: parent
|
|
color: Appearance.colors.colSecondaryHover
|
|
text: Qt.locale().toString(DateTime.clock.date, "dd")
|
|
font {
|
|
family: Appearance.font.family.expressive
|
|
pixelSize: 20
|
|
weight: 1000
|
|
}
|
|
}
|
|
}
|