lux-shell/modules/bar/components/Clock.qml
2025-09-05 22:41:21 -04:00

12 lines
244 B
QML

import qs.components
import Quickshell
StyledLabel {
StyledText {
text: ` ${Qt.formatDateTime(clock.date, "hh:mm:ss AP")}`
SystemClock {
id: clock
precision: SystemClock.Seconds
}
}
}