1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-29 07:52:50 -05:00

per-monitor wallpapers

This commit is contained in:
bbedward
2025-09-05 16:08:32 -04:00
parent 68157ca636
commit 8d674a4fdc
10 changed files with 494 additions and 71 deletions

View File

@@ -32,7 +32,7 @@ LazyLoader {
id: root
anchors.fill: parent
property string source: SessionData.wallpaperPath || ""
property string source: SessionData.getMonitorWallpaper(modelData.name) || ""
property bool isColorSource: source.startsWith("#")
property Image current: one
@@ -71,7 +71,9 @@ LazyLoader {
active: !root.source || root.isColorSource
asynchronous: true
sourceComponent: DankBackdrop {}
sourceComponent: DankBackdrop {
screenName: modelData.name
}
}
Img {