nosignal-shell/modules/background/Background.qml
2025-05-05 11:39:32 +10:00

31 lines
597 B
QML

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