mirror of
https://github.com/jahruz67/wisp-open.git
synced 2026-08-08 18:14:08 +00:00
16 lines
470 B
Go
16 lines
470 B
Go
//go:build linux
|
|
package linux
|
|
|
|
// linuxOverlay provides a simple dummy implementation for Linux.
|
|
// It relies on tray icon status updates for visual feedback instead of raw drawing.
|
|
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() {}
|