NPanelOverlay: implement wrapper for NPanel that opens in overlay layer

This commit is contained in:
Damian D'Souza
2025-10-19 13:22:47 +02:00
parent 56dc0d70de
commit 17ed483285
+15
View File
@@ -0,0 +1,15 @@
import QtQuick
import Quickshell
import Quickshell.Wayland
import qs.Commons
import qs.Services
NPanel {
sourceComponent: Component {
// PanelWindow has its own screen property inherited of QsWindow
NPanelWindow {
loggerPrefix: "NPanelOverlay"
WlrLayershell.layer: WlrLayer.Overlay
}
}
}