mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
22 lines
482 B
QML
22 lines
482 B
QML
/*
|
|
SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.0
|
|
|
|
import org.kde.plasma.configuration 2.0
|
|
|
|
ConfigModel {
|
|
ConfigCategory {
|
|
name: i18n("General")
|
|
icon: "preferences-desktop-plasma"
|
|
source: "ConfigGeneral.qml"
|
|
}
|
|
ConfigCategory {
|
|
name: i18n("Entries")
|
|
icon: "preferences-desktop-notification"
|
|
source: "ConfigEntries.qml"
|
|
}
|
|
}
|