nosignal-shell/modules/background/Background.qml
2 * r + 2 * t 434e31d830 internal: use panelwindow
Using WlrLayershell broke for newer versions of qs
2025-06-04 19:16:17 +10:00

26 lines
519 B
QML

import "root:/widgets"
import Quickshell
import Quickshell.Wayland
Variants {
model: Quickshell.screens
StyledWindow {
id: win
required property ShellScreen modelData
screen: modelData
name: "background"
WlrLayershell.exclusionMode: ExclusionMode.Ignore
WlrLayershell.layer: WlrLayer.Background
color: "black"
anchors.top: true
anchors.bottom: true
anchors.left: true
anchors.right: true
Wallpaper {}
}
}