e8086e8528
plugins, new cursor, light/dark themes, new app launcher, ...
16 lines
305 B
QML
16 lines
305 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
|
|
Singleton {
|
|
id: root
|
|
readonly property string clock: Qt.formatDateTime(sysClock.date, "hh:mm")
|
|
readonly property string date: Qt.formatDateTime(sysClock.date, "ddd MMM d")
|
|
|
|
SystemClock {
|
|
id: sysClock
|
|
precision: SystemClock.Minutes
|
|
}
|
|
}
|