shift-shell/containments/homescreens/folio/qml/config.qml
Devin Lin 3d8250c010 folio & halcyon: Use standardized containment config for settings
This switching Folio and Halcyon to define their settings as a
containment config so that it fits in with the other containment
options.

This removes the convoluted maze of nested settings windows due to
wrapping the containment settings with a custom settings window around
it.
2025-10-05 15:30:15 -04:00

19 lines
463 B
QML

// SPDX-FileCopyrightText: 2025 Devin Lin <devin@kde.org>
// SPDX-License-Identifier: LGPL-2.0-or-later
import QtQuick 2.0
import org.kde.plasma.plasmoid 2.0
import org.kde.plasma.configuration 2.0
/**
* Part of the applet/containment spec, config.qml defines the categories to show in the settings.
*/
ConfigModel {
ConfigCategory {
name: i18n("General")
icon: "go-home-symbolic"
source: "settings/ConfigGeneral.qml"
}
}