mirror of
https://github.com/jahruz67/wisp-open.git
synced 2026-08-08 18:14:08 +00:00
- Added instructions for Linux Wayland paste setup in README.md. - Removed unnecessary JavaScript file and updated references in HTML files. - Updated DefaultAIPrompt to clarify the role of the transcription tool. - Removed overlay notifications for Linux to reduce desktop clutter. - Implemented checks to ensure transcript integrity during refinement. - Added tests to validate transcript preservation logic. - Removed ydotool setup script as it is no longer needed.
20 lines
446 B
Go
20 lines
446 B
Go
//go:build linux
|
|
|
|
package linux
|
|
|
|
// linuxOverlay intentionally does not show system notifications. Tray status
|
|
// still updates, but dictation no longer spams desktop notification bubbles.
|
|
type linuxOverlay struct{}
|
|
|
|
func NewOverlay() *linuxOverlay {
|
|
return &linuxOverlay{}
|
|
}
|
|
|
|
func (o *linuxOverlay) Show(message string) {}
|
|
|
|
func (o *linuxOverlay) Hide() {}
|
|
|
|
func (o *linuxOverlay) SetVolume(level float64) {}
|
|
|
|
func (o *linuxOverlay) Close() {}
|