From 45894c32558ce4d1bbe7cde227f07b6759563e76 Mon Sep 17 00:00:00 2001 From: kirisaki-vk Date: Fri, 29 Aug 2025 09:51:08 +0300 Subject: [PATCH] chore: use var instead of list --- .config/quickshell/ii/modules/common/Config.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/common/Config.qml b/.config/quickshell/ii/modules/common/Config.qml index c8a8bc78a..8ce2d0c06 100644 --- a/.config/quickshell/ii/modules/common/Config.qml +++ b/.config/quickshell/ii/modules/common/Config.qml @@ -174,7 +174,10 @@ Singleton { property bool showAppIcons: true property bool alwaysShowNumbers: false property int showNumberDelay: 300 // milliseconds - property list numberMapping: [] + property var numberMapping: { + "1": "1", + "2": "2" + } } property JsonObject weather: JsonObject { property bool enable: false