mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
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.
19 lines
463 B
QML
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"
|
|
}
|
|
}
|