Files
z-bar-qt/Modules/Wallpaper/Wallpaper.qml
T
Zacharias-Brohn cdefe3706f organize files
2026-02-23 16:22:28 +01:00

32 lines
559 B
QML

import Quickshell
import QtQuick
import Quickshell.Wayland
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.namespace: "ZShell-Wallpaper"
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.layer: WlrLayer.Bottom
color: "transparent"
anchors {
top: true
left: true
right: true
bottom: true
}
WallBackground {}
}
}
}