diff options
| author | 2026-05-13 13:43:22 +0100 | |
|---|---|---|
| committer | 2026-05-13 13:43:22 +0100 | |
| commit | c82fe72f9464743249e4dc0cc4b2597126bc6f01 (patch) | |
| tree | 83e85ad1858ae4d6989527943934c2b89435e833 /thunderbird/user.js | |
| parent | 740aaf55a6e6c969e01f0b032c4142a126680eb8 (diff) | |
| download | dotfiles-c82fe72f9464743249e4dc0cc4b2597126bc6f01.tar.gz dotfiles-c82fe72f9464743249e4dc0cc4b2597126bc6f01.tar.bz2 dotfiles-c82fe72f9464743249e4dc0cc4b2597126bc6f01.zip | |
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.
Diffstat (limited to 'thunderbird/user.js')
| -rw-r--r-- | thunderbird/user.js | 5 |
1 files changed, 5 insertions, 0 deletions
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); |
