Match macOS Dock behavior using the same idle/connected glyph assets. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
293 B
Go
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 }
|