Files
nixos-config/home/common/programs/hyprland/quickshell/Time.qml
T
Miguel Palhas e8086e8528 Several hyprland updates:
plugins, new cursor, light/dark themes, new app launcher, ...
2026-02-16 17:33:40 +00:00

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
}
}