We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d76767d + b018f97 commit 665b40fCopy full SHA for 665b40f
pkg/mousemover/mouseMover.go
@@ -8,7 +8,6 @@ import (
8
9
"github.com/go-vgo/robotgo"
10
"github.com/prashantgupta24/activity-tracker/pkg/tracker"
11
- "github.com/prashantgupta24/automatic-mouse-mover/pkg/notify"
12
)
13
14
var instance *MouseMover
@@ -56,7 +55,7 @@ func (m *MouseMover) Start() {
56
55
} else {
57
msg := "Mouse pointer cannot be moved. See README for details."
58
log.Errorf(msg)
59
- notify.SendMessage(msg)
+ robotgo.ShowAlert("Error with Automatic Mouse Mover", msg)
60
}
61
case <-time.After(timeout * time.Millisecond):
62
//timeout, do nothing
0 commit comments