diff --git a/src/windows/notificationtoast/NotificationToasts.qml b/src/windows/notificationtoast/NotificationToasts.qml index a86caa4..c62f9bf 100644 --- a/src/windows/notificationtoast/NotificationToasts.qml +++ b/src/windows/notificationtoast/NotificationToasts.qml @@ -12,13 +12,44 @@ PopupWindow { window: popups.win } mask: Region { + id: mask item: popupcol intersection: Intersection.Xor + Region { + item: popupcol.children[0] + intersection: Intersection.Xor + } + + Region { + item: popupcol.children[1] + intersection: Intersection.Xor + } + + Region { + item: popupcol.children[2] + intersection: Intersection.Xor + } + + Region { + item: popupcol.children[3] + intersection: Intersection.Xor + } + + Region { + item: popupcol.children[4] + intersection: Intersection.Xor + } + + Region { + item: popupcol.children[5] + intersection: Intersection.Xor + } } + visible: true color: "transparent" height: 500 - width: 400 + width: 300 ListView { id: popupcol anchors.margins: lbar.width * 0.2 diff --git a/src/windows/notificationtoast/Toast.qml b/src/windows/notificationtoast/Toast.qml index 67fb055..a7fba82 100644 --- a/src/windows/notificationtoast/Toast.qml +++ b/src/windows/notificationtoast/Toast.qml @@ -14,6 +14,7 @@ MouseArea { required property string summary required property string body required property string appIcon + required property string image required property NotificationUrgency urgency required property int index @@ -36,10 +37,11 @@ MouseArea { IconImage { source: Quickshell.iconPath(toast.appIcon) height: 16 + visible: toast.appIcon } Text { - text: toast.appName + ": " + toast.summary + text: (toast.appIcon ? " " : toast.appName + ": ") + toast.summary } } Text {