Files
z-bar-qt/Wallpaper.qml
T
Zacharias-Brohn 91a4f95fd0 major updates
2025-11-24 22:00:50 +01:00

33 lines
707 B
QML

import Quickshell
import QtQuick
import Quickshell.Wayland
import qs.Helpers
import qs.Modules
import qs.Config
Loader {
asynchronous: true
active: Config.background.enabled
sourceComponent: Variants {
model: Quickshell.screens
PanelWindow {
id: root
required property var modelData
screen: modelData
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.layer: WlrLayer.Bottom
color: "transparent"
anchors {
top: true
left: true
right: true
bottom: true
}
WallBackground {}
}
}
}