summaryrefslogtreecommitdiff
path: root/modules/drawers/Exclusions.qml
blob: 8ad23a2bd47728ad1828bd7449c4bd79997bc8c6 (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
pragma ComponentBehavior: Bound

import "root:/widgets"
import "root:/config"
import Quickshell

Scope {
    id: root

    required property ShellScreen screen

    ExclusionZone {
        anchors.left: true
    }

    ExclusionZone {
        anchors.top: true
    }

    ExclusionZone {
        anchors.right: true
    }

    ExclusionZone {
        anchors.bottom: true
    }

    component ExclusionZone: StyledWindow {
        screen: root.screen
        name: "border-exclusion"
        exclusiveZone: BorderConfig.thickness
    }
}