16 lines
271 B
QML
16 lines
271 B
QML
import QtQuick
|
|
import org.kde.plasma.configuration
|
|
|
|
ConfigModel {
|
|
ConfigCategory {
|
|
name: i18n("General")
|
|
icon: "configure"
|
|
source: "config/general.qml"
|
|
}
|
|
ConfigCategory {
|
|
name: i18n("Debug")
|
|
icon: "cab_view"
|
|
source: "config/debug.qml"
|
|
}
|
|
}
|