1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-27 15:02:50 -05:00

add modal and notification layer overrides

This commit is contained in:
bbedward
2025-11-11 23:51:01 -05:00
parent 0126aded78
commit 748faf92c1
3 changed files with 38 additions and 2 deletions

View File

@@ -64,6 +64,20 @@ PanelWindow {
visible: hasValidData
WlrLayershell.layer: {
const envLayer = Quickshell.env("DMS_NOTIFICATION_LAYER")
if (envLayer) {
switch (envLayer) {
case "bottom":
return WlrLayershell.Bottom
case "overlay":
return WlrLayershell.Overlay
case "background":
return WlrLayershell.Background
case "top":
return WlrLayershell.Top
}
}
if (!notificationData)
return WlrLayershell.Top