From ecf824f85f1ef22409775c293ff0c71e1832689a Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 20 Jul 2025 21:56:37 +0700 Subject: [PATCH] remove redundant PersistentStates --- .../ii/modules/common/PersistentStates.qml | 24 ------------------- 1 file changed, 24 deletions(-) delete mode 100644 .config/quickshell/ii/modules/common/PersistentStates.qml diff --git a/.config/quickshell/ii/modules/common/PersistentStates.qml b/.config/quickshell/ii/modules/common/PersistentStates.qml deleted file mode 100644 index d65887256..000000000 --- a/.config/quickshell/ii/modules/common/PersistentStates.qml +++ /dev/null @@ -1,24 +0,0 @@ -import QtQuick -import Quickshell -pragma Singleton -pragma ComponentBehavior: Bound - -Singleton { - property QtObject ai: QtObject { - property string model - property real temperature: 0.5 - } - - property QtObject sidebar: QtObject { - property QtObject bottomGroup: QtObject { - property bool collapsed: false - property int tab: 0 - } - } - - property QtObject booru: QtObject { - property bool allowNsfw: false - property string provider: "yandere" - } - -}