From a5b34042f9f5d206b81a272741dce1e14514407c Mon Sep 17 00:00:00 2001 From: Christoph Schwizer Date: Tue, 2 Dec 2025 19:03:50 +0100 Subject: [PATCH] Display user-specified title in simple notification --- app/main/lib/breaks.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/main/lib/breaks.ts b/app/main/lib/breaks.ts index fe8402bf..29c71a96 100644 --- a/app/main/lib/breaks.ts +++ b/app/main/lib/breaks.ts @@ -208,7 +208,10 @@ function doBreak(): void { log.info(`Break started [type=${settings.notificationType}]`); if (settings.notificationType === NotificationType.Notification) { - showNotification("Time for a break!", stripHtml(settings.breakMessage)); + showNotification( + stripHtml(settings.breakTitle), + stripHtml(settings.breakMessage), + ); if (settings.soundType !== SoundType.None) { sendIpc( IpcChannel.SoundStartPlay,