mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-05-15 16:52:47 -04:00
24 lines
484 B
QML
24 lines
484 B
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Widgets
|
|
import qs.Modules.Plugins
|
|
|
|
PluginSettings {
|
|
pluginId: "myWidget"
|
|
|
|
StringSetting {
|
|
settingKey: "text"
|
|
label: "Display Text"
|
|
description: "Text shown in the bar widget"
|
|
placeholder: "Hello"
|
|
defaultValue: "Hello"
|
|
}
|
|
|
|
ToggleSetting {
|
|
settingKey: "showIcon"
|
|
label: "Show Icon"
|
|
description: "Display an icon next to the text"
|
|
defaultValue: true
|
|
}
|
|
}
|