Files
esengine--deepseek-reasonix/desktop/tray_loop_external.go
T
2026-07-13 13:00:08 +08:00

12 lines
199 B
Go

//go:build !windows
package main
import "fyne.io/systray"
func startDesktopTray(onReady, onExit func()) func() {
start, end := systray.RunWithExternalLoop(onReady, onExit)
start()
return end
}