mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
ec3f49881f
* Adding a new synchronization mechanism between fleet-desktop app and Orbit service. Improved windows service teardown to ensure that fleet-desktop does not get force killed without getting signaled. Improved windows process enumeration to avoid unnecessary delays during windows service start and windows service teardown. Updating windows service to reflect service teardown extra time due to synchronization.
31 lines
622 B
Go
31 lines
622 B
Go
//go:build darwin || linux
|
|
// +build darwin linux
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
//go:embed icon_light.png
|
|
var iconLight []byte
|
|
|
|
//go:embed icon_dark.png
|
|
var iconDark []byte
|
|
|
|
func getSystemTheme() (theme, error) {
|
|
log.Debug().Msg("get system theme not implemented for this platform")
|
|
return themeUnknown, nil
|
|
}
|
|
|
|
func watchSystemTheme(_ *iconManager) {
|
|
log.Debug().Msg("watch system theme not implemented for this platform")
|
|
}
|
|
|
|
func blockWaitForStopEvent(channelId string) error {
|
|
log.Debug().Msg("communication channel helpers are not implemented for this platform")
|
|
return nil
|
|
}
|