blob: e73a6a980aaec9df22871a2c8320f8f82bea1ed8 (
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
35
36
37
38
39
|
pragma ComponentBehavior: Bound
import "root:/widgets"
import "root:/config"
import Quickshell
Scope {
id: root
required property ShellScreen screen
ExclusionZone {
anchors.left: false
}
ExclusionZone {
anchors.top: false
}
ExclusionZone {
anchors.right: false
}
ExclusionZone {
anchors.bottom: false
}
component ExclusionZone: StyledWindow {
screen: root.screen
name: "border-exclusion"
implicitWidth: BorderConfig.thickness
implicitHeight: BorderConfig.thickness
anchors.top: true
anchors.left: true
anchors.bottom: true
anchors.right: true
}
}
|