From c82fe72f9464743249e4dc0cc4b2597126bc6f01 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Wed, 13 May 2026 13:43:22 +0100 Subject: feat(thunderbird): disable calendar reminder dialog The floating 'dismiss/snooze' window doesn't tile cleanly under sway. Turn it off and rely on TB's libnotify-backed desktop notifications, which mako renders like any other notification. --- thunderbird/user.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/thunderbird/user.js b/thunderbird/user.js index ace7bed..94c1f34 100644 --- a/thunderbird/user.js +++ b/thunderbird/user.js @@ -61,3 +61,8 @@ user_pref("mail.pane_config.dynamic", 2); /** Calendar **/ user_pref("calendar.week.start", 1); user_pref("calendar.timezone.useSystemTimezone", true); +// Kill the floating dismiss/snooze reminder dialog; TB still fires +// libnotify-backed desktop notifications (caught by mako). +user_pref("calendar.alarms.show", false); +user_pref("calendar.alarms.showmissed", false); +user_pref("calendar.alarms.playsound", false); -- cgit v1.3.1