summaryrefslogtreecommitdiff
path: root/modules/drawers/Exclusions.qml
blob: c8b395990fd1198d74d6543a17f4860f798b06a6 (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"
        width: BorderConfig.thickness
        height: BorderConfig.thickness

        anchors.top: true
        anchors.left: true
        anchors.bottom: true
        anchors.right: true
    }
}