An open API service indexing awesome lists of open source software.

https://github.com/half0wl/maca

Autoclicker for macOS, written in Python.
https://github.com/half0wl/maca

Last synced: over 1 year ago
JSON representation

Autoclicker for macOS, written in Python.

Awesome Lists containing this project

README

          

# Maca

Autoclicker for macOS, written in Python.

(Work in progress)

Retrieving current cursor position and simulating a left click is working.

```python
>>> from maca import cur_pos, click
>>> cur_pos()

>>> click()
Clicked x=1140.57421875 y=401.890625
```

## Todo

* Auto-clicking upon trigger (with `NSTimer` maybe?)
* Hotkey trigger (with `NSEvent` & `NSKeyDownMask`)
* GUI? With either PyQt or Tkinter. Or CLI? Or menubar app (similar to [simon](https://github.com/half0wl/simon/))?