mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
25 lines
630 B
QML
25 lines
630 B
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Widgets
|
|
import qs.Modules.Plugins
|
|
|
|
PluginSettings {
|
|
id: root
|
|
pluginId: "wallpaperWatcherDaemon"
|
|
|
|
StyledText {
|
|
text: "Wallpaper Change Hook"
|
|
font.pixelSize: Theme.fontSizeLarge
|
|
font.weight: Font.Bold
|
|
color: Theme.surfaceText
|
|
}
|
|
|
|
StringSetting {
|
|
settingKey: "scriptPath"
|
|
label: "Script Path"
|
|
description: "Path to a script that will be executed when the wallpaper changes. The new wallpaper path will be passed as the first argument."
|
|
placeholder: "/path/to/your/script.sh"
|
|
defaultValue: ""
|
|
}
|
|
}
|