nosignal-shell/modules/drawers/Exclusions.qml
2025-05-23 21:53:34 +08:00

33 lines
538 B
QML

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
}
}