Add reminder notification sounds with preferences UI#413
Merged
realcarbonneau merged 1 commit intomasterfrom Mar 14, 2026
Merged
Add reminder notification sounds with preferences UI#413realcarbonneau merged 1 commit intomasterfrom
realcarbonneau merged 1 commit intomasterfrom
Conversation
20 bundled notification WAV files in taskcoachlib/sounds/, organized by category: Gentle/Subtle (gentle-chime, water-drop, wind-chime, music-box), Bells/Chimes (bright-bell, bell-classic, temple-bell, sleigh-bell), Alert/Alarm (soft-alarm, alarm-clock, rising-alert, urgent-beep), Musical (piano-note, xylophone, marimba, harp-gliss), Digital/Modern (two-tone, electronic-ping, message-ping, doorbell). Playback uses the platform's native audio: paplay on Linux (talks to PulseAudio/PipeWire), afplay on macOS, wx.adv.Sound on Windows. wx.adv.Sound uses the dead OSS backend on Linux and produces no audio despite returning success - paplay is the cross-platform fix. Preferences > Reminders: sound dropdown with Test button (uses ThemedGenBitmapTextButton with knotify icon, matching IconPicker pattern). Default: Gentle Chime. Sound plays when the reminder popup appears. Generator script at taskcoachlib/sounds/generate_sounds.py creates WAVs from sine waves with harmonics and envelopes. WAVs are committed to the repo (472 KB total) - the script is a dev tool for modifying or adding sounds. New docs/REMINDERS.md with cross-links from SCHEDULERS.md, DATETIME_PRESETS.md, and TODO.md.
60999
added a commit
to 60999/taskcoach
that referenced
this pull request
Mar 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
20 bundled notification WAV files in taskcoachlib/sounds/, organized by category: Gentle/Subtle (gentle-chime, water-drop, wind-chime, music-box), Bells/Chimes (bright-bell, bell-classic, temple-bell, sleigh-bell), Alert/Alarm (soft-alarm, alarm-clock, rising-alert, urgent-beep), Musical (piano-note, xylophone, marimba, harp-gliss), Digital/Modern (two-tone, electronic-ping, message-ping, doorbell).
Playback uses the platform's native audio: paplay on Linux (talks to PulseAudio/PipeWire), afplay on macOS, wx.adv.Sound on Windows. wx.adv.Sound uses the dead OSS backend on Linux and produces no audio despite returning success - paplay is the cross-platform fix.
Preferences > Reminders: sound dropdown with Test button (uses ThemedGenBitmapTextButton with knotify icon, matching IconPicker pattern). Default: Gentle Chime. Sound plays when the reminder popup appears.
Generator script at taskcoachlib/sounds/generate_sounds.py creates WAVs from sine waves with harmonics and envelopes. WAVs are committed to the repo (472 KB total) - the script is a dev tool for modifying or adding sounds.
New docs/REMINDERS.md with cross-links from SCHEDULERS.md, DATETIME_PRESETS.md, and TODO.md.
moved from UV: add sound to reminders #116