nova-shell/shell/modules/OverviewBackdrop.qml
2026-04-17 21:58:48 +02:00

28 lines
543 B
QML

import QtQuick
import Quickshell
import Quickshell.Wayland
import "." as M
import "../applets" as C
PanelWindow {
id: root
required property var screen
color: "transparent"
WlrLayershell.layer: WlrLayer.Background
WlrLayershell.exclusiveZone: -1
WlrLayershell.namespace: "nova-overview-backdrop"
mask: Region {}
anchors.top: true
anchors.left: true
anchors.right: true
anchors.bottom: true
C.HexWaveBackground {
anchors.fill: parent
running: M.NiriIpc.overviewOpen
}
}