a minimalistic go library/app to keep your mac active and alive
Go to file
Prashant Gupta 39119e193b
Merge pull request #12 from prashantgupta24/error-update
handle machine sleep
2019-04-23 17:28:07 -07:00
appInfo adding app icon 2019-03-27 18:01:45 -07:00
assets/icon added system tray icon 2019-03-27 17:40:22 -07:00
cmd added tests 2019-03-28 12:52:25 -07:00
pkg handling log file 2019-04-23 17:26:56 -07:00
resources updated readme 2019-04-11 17:31:23 -07:00
.gitignore added system sleep check 2019-04-23 16:51:58 -07:00
.travis.yml using go mod 2019-03-26 19:59:53 -07:00
LICENSE added license 2019-03-27 18:03:39 -07:00
Makefile adding app icon 2019-03-27 18:01:45 -07:00
README.md updated readme 2019-04-11 18:12:40 -07:00
go.mod integrated latest activity tracker changes 2019-04-10 18:47:01 -07:00
go.sum integrated latest activity tracker changes 2019-04-10 18:47:01 -07:00

README.md

Presenting the minimalistic Automatic-Mouse-Mover(AMM) app!

GitHub release Go Report Card

Ever felt the need to keep your machine awake without having to resort to the age-old methods of installing an app that you don't trust or playing a video? Well, not anymore!

Introducing the simplest app on the market that has the sole purpose of moving your mouse pointer at regular intervals so that your machine never sleeps! And best of all, it works ONLY when you are not working, so be rest assured that the mouse won't start moving on its own without the machine actually being idle.

Demo

You just click on Start, and AMM will take care of moving your mouse whenever it feels that the system has been left idle for a long time. It's as simple as this.

How to install

Make sure you have go installed. Once that is done, clone this repo and run Make, it should create the amm.app and open the folder where it was built for you. You just have to drag and drop it to the Applications folder on your mac.

Double click on the app, and the cute mouse should appear on your taskbar on top of your screen. Once you click on Start, you might encounter an initial Access request which I've discussed in the next section. If not, then you are all set!

Granting access for moving the mouse cursor

While starting the app, you might see a message like the one below or an error stating Mouse pointer cannot be moved.

Don't worry, it's nothing sinister, it's just that Mac doesn't allow apps to gain accessibility to the computer by default (even standard apps like Automator, Firefox etc. who might want to access some features need to go through the same process).

In order to resolve this error you need to:

Go to System Preferences -> Security & Privacy -> Privacy -> Accessibility and allow the amm app to gain access.

If you still see the error, try to quit and start the app again (the age-old way of fixing everything).

How it works

Every 60 seconds, AMM uses Activity tracker to track the various changes that happened in your system during that time, like cursor movement, mouse clicks, screen changes etc. Whenever AMM detects a change in the system, it knows that the system is busy and will not do anything. If not, it moves the mouse cursor ever so slightly, enough to keep your Mac awake for eternity.

All code is public and open-sourced so no worrying if there's nefarious intention involved in recording your activity or not.