mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-05-15 08:42:47 -04:00
17 lines
324 B
QML
17 lines
324 B
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Widgets
|
|
import qs.Modules.Plugins
|
|
|
|
PluginSettings {
|
|
pluginId: "myDaemon"
|
|
|
|
StringSetting {
|
|
settingKey: "configValue"
|
|
label: "Configuration"
|
|
description: "Value used by the daemon"
|
|
placeholder: "Enter value..."
|
|
defaultValue: ""
|
|
}
|
|
}
|