mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-05-15 08:42:47 -04:00
19 lines
343 B
QML
19 lines
343 B
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Widgets
|
|
import qs.Modules.Plugins
|
|
|
|
PluginSettings {
|
|
pluginId: "myDesktopWidget"
|
|
|
|
SliderSetting {
|
|
settingKey: "opacity"
|
|
label: "Opacity"
|
|
description: "Widget background opacity"
|
|
defaultValue: 85
|
|
minimum: 10
|
|
maximum: 100
|
|
unit: "%"
|
|
}
|
|
}
|