19 lines
281 B
QML
19 lines
281 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import QtQuick
|
|
|
|
Singleton {
|
|
id: root
|
|
readonly property string time: {
|
|
Qt.formatDateTime(clock.date, "ddd d MMM [hh:mm]")
|
|
}
|
|
|
|
|
|
SystemClock {
|
|
id: clock
|
|
precision: SystemClock.Minutes
|
|
}
|
|
}
|