Files
z-bar-qt/Wallpaper.qml
T
Zacharias-Brohn 07e399f6d9 lots of changes
2025-11-19 17:01:20 +01:00

28 lines
605 B
QML

import Quickshell
import QtQuick
import Quickshell.Wayland
import qs.Helpers
import qs.Modules
Scope {
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
}
Background {}
}
}
}