53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/getlantern/systray"
|
|
"github.com/prashantgupta24/automatic-mouse-mover/assets/icon"
|
|
"github.com/prashantgupta24/automatic-mouse-mover/pkg/mousemover"
|
|
)
|
|
|
|
func main() {
|
|
systray.Run(onReady, onExit)
|
|
}
|
|
|
|
func onReady() {
|
|
go func() {
|
|
systray.SetIcon(icon.Data)
|
|
ammStart := systray.AddMenuItem("Start", "start the app")
|
|
ammStop := systray.AddMenuItem("Stop", "stop the app")
|
|
systray.AddSeparator()
|
|
mQuit := systray.AddMenuItem("Quit", "Quit the whole app")
|
|
// Sets the icon of a menu item. Only available on Mac.
|
|
//mQuit.SetIcon(icon.Data)
|
|
mouseMover := mousemover.GetInstance()
|
|
for {
|
|
select {
|
|
case <-ammStart.ClickedCh:
|
|
fmt.Println("starting the app")
|
|
mouseMover.Start()
|
|
//notify.SendMessage("starting the app")
|
|
|
|
case <-ammStop.ClickedCh:
|
|
fmt.Println("stopping the app")
|
|
mouseMover.Quit()
|
|
|
|
case <-mQuit.ClickedCh:
|
|
fmt.Println("Requesting quit")
|
|
mouseMover.Quit()
|
|
systray.Quit()
|
|
fmt.Println("Finished quitting")
|
|
return
|
|
}
|
|
}
|
|
|
|
}()
|
|
}
|
|
|
|
func onExit() {
|
|
// clean up here
|
|
fmt.Println("exiting")
|
|
|
|
}
|