Files
navi/internal/trayhost/tray_stub.go
T
M4andCursor fed1ace33e
ci / test (macos-latest) (push) Waiting to run
ci / test (ubuntu-latest) (push) Waiting to run
ci / test (windows-latest) (push) Waiting to run
Release 3.8.2.7: Windows taskbar/tray sea-wave icon when connected.
Match macOS Dock behavior using the same idle/connected glyph assets.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-01 16:45:55 +03:00

14 lines
293 B
Go

//go:build !windows
package trayhost
// macOS/Linux: no CGO tray in default CGO_ENABLED=0 builds.
func start(appName string, h Hooks) bool {
_ = appName
_ = h
return false
}
// SetConnectedIcon is a no-op when tray is unsupported.
func SetConnectedIcon(connected bool) { _ = connected }