feat: add system tray #868
Open
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.
This Pull Request introduces complete system tray functionality to the Whispering application
1. System Tray Integration
2. Dynamic State Indicators
The tray icon changes automatically to provide visual feedback on the app's current status:
3. User Configuration
Minimize to Tray: A toggle to hide the window to the tray when the close button is clicked.Start Minimized: An option to launch the application directly to the system tray on startup.🛠️ Technical Details & Implementation
Backend (Rust/Tauri)
tray.rsmodule: Implements the entire tray management logic, including icon switching, menu setup, and event handling.closeToTraysetting.Arc<Mutex<>>) to handle tray state updates across different application threads (recording, transcription).Frontend (Svelte/TypeScript)
settings.tsand the Settings page UI to include the new tray configuration options.📂 Files Impacted
src-tauri/src/tray.rs(New)src-tauri/src/lib.rs(Tray setup and event handling)src/lib/settings/settings.ts(New tray settings schema)src/lib/stores/settings.svelte.ts(Settings store integration)src/routes/(config)/settings/+page.svelte(System Tray settings UI)src/lib/servicesandsrc/lib/queryfor state-change integration.