Files
z-bar-qt/Wallpaper.qml
T
Zacharias-Brohn d82cb4eda6 wallpaper picker
2025-11-12 20:28:38 +01:00

31 lines
744 B
QML

import Quickshell
import QtQuick
import Quickshell.Wayland
import qs.Helpers
Scope {
Variants {
model: Quickshell.screens
PanelWindow {
id: root
required property var modelData
screen: modelData
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.layer: WlrLayer.Bottom
anchors {
top: true
left: true
right: true
bottom: true
}
Image {
id: wallpaperImage
anchors.fill: parent
source: WallpaperPath.currentWallpaperPath
fillMode: Image.PreserveAspectCrop
}
}
}
}