From 14c930d48cc7bef55aed37c45063154e46aff179 Mon Sep 17 00:00:00 2001 From: Greyfeather Date: Sat, 3 Jan 2026 22:05:02 -0700 Subject: [PATCH] Use wrapper functions in DateTime to format --- dots/.config/quickshell/ii/services/Weather.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/quickshell/ii/services/Weather.qml b/dots/.config/quickshell/ii/services/Weather.qml index 0b900a1d9..c42c7cb8e 100644 --- a/dots/.config/quickshell/ii/services/Weather.qml +++ b/dots/.config/quickshell/ii/services/Weather.qml @@ -76,7 +76,7 @@ Singleton { temp.temp += "°C"; temp.tempFeelsLike += "°C"; } - temp.lastRefresh = Qt.locale().toString(new Date(), (Config.options?.time.format ?? "hh:mm") + " - " + (Config.options?.time.dateWithYearFormat ?? "dd/MM/yyyy")); + temp.lastRefresh = DateTime.time + " • " + DateTime.date; root.data = temp; }