summaryrefslogtreecommitdiff
path: root/modules/background/Background.qml
blob: ca3aaffb34ce360b797c3c30cca5fbff2294ebcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 {}
    }
}