Pleasant-sounding announcer of desktop notifications. Give a real voice to GNOME: - Let your GNOME desktop speak and intelligently respond to you. - Reads desktop notifications aloud with human-like voice using Piper. - Can be muted and respects "Do not Disturb". - Reads aloud mouse selection, autodetecting heavily mixed languages. - Summarizes, translates, explains or proofreads selected text using a local LLM. Requires the 'voluble' script, available on GitHub along with setup instructions.
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-A-005 manual_review
extensions should not access the clipboard directly
Direct clipboard access via `St.Clipboard.get_default()` requires reviewer scrutiny.
extension.js:73
St.Clipboard.get_default()
extension.js:83
St.Clipboard.get_default()
extension.js:94
St.Clipboard.get_default()
extension.js:105
St.Clipboard.get_default()
extension.js:115
St.Clipboard.get_default()
EGO-L-002 warning
objects created by extension should be destroyed in disable()
Objects assigned in `enable()` are missing matching `.destroy()` calls in `disable()` or its helper methods.
extension.js:227
this.itemED = new PopupMenu.PopupMenuItem(this.unmuted ? _('🔇 Mute Voluble') : _('🔊 Unmute Voluble'))
Please use `connectObject()` and `disconnectObject()` so it is easier to track for cleanup.