Minimal loadable DMS widget skeleton with plugin.json manifest and TailscaleWidget.qml component. Symlinked, enabled, and loaded cleanly in Dank Material Shell. References #1, #2
23 lines
393 B
QML
23 lines
393 B
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
import qs.Modules.Plugins
|
|
|
|
PluginComponent {
|
|
id: root
|
|
|
|
horizontalBarPill: Component {
|
|
StyledText {
|
|
text: "TS"
|
|
color: Theme.surfaceText
|
|
}
|
|
}
|
|
|
|
verticalBarPill: Component {
|
|
StyledText {
|
|
text: "TS"
|
|
color: Theme.surfaceText
|
|
}
|
|
}
|
|
}
|