nova-shell/shell/modules/OverviewBackdrop.qml

27 lines
535 B
QML

import QtQuick
import Quickshell
import Quickshell.Wayland
import "." as M
import "../services" as S
import "../applets" as C
PanelWindow {
id: root
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: S.NiriIpc.overviewOpen
}
}