blob: edd761314f05dc169ff80313e97c51f52d0d1e5b (
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
27
28
29
30
31
32
33
34
|
import "root:/widgets"
import "root:/config"
import Quickshell
import Quickshell.Wayland
import QtQuick
import QtQuick.Effects
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
}
}
}
|