if (Notification.isSupported()) {
const notif = new Notification({
title: data.threadName,
body: data.message,
icon: nativeImage.createFromPath('./images/icons/png/32x32.png')
});
notif.show();
}