nosignal-shell/modules/background/Background.qml
2025-05-08 13:32:27 +10:00

26 lines
491 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"
exclusionMode: ExclusionMode.Ignore
layer: WlrLayer.Background
color: "black"
anchors.top: true
anchors.bottom: true
anchors.left: true
anchors.right: true
Wallpaper {}
}
}