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

https://github.com/dzobamain/console-autocliker

Console autocliker - a simple console-based auto clicker for your PC
https://github.com/dzobamain/console-autocliker

auto-clicker console cpp functions

Last synced: 10 months ago
JSON representation

Console autocliker - a simple console-based auto clicker for your PC

Awesome Lists containing this project

README

          

# Concole - Autocliker 🎯

## Description

**Autocliker** β€” a simple and fun console auto-clicker for your PC! πŸ–±οΈ
It allows you to configure:

- Number of clicks
- Delay between clicks
- Click execution time
- Time before start ⏱️

For now, the auto-clicker only works at the cursor position, but don’t worry β€” it’s easy to extend and add your own functionality in the future! πŸš€

Supported platforms: **Windows, macOS, Linux** πŸ’»

---

## Currently Implemented βœ…

- Clicks at cursor position πŸ–±οΈ

*(More features will be added here in the future… stay tuned!)*

---

## Installation Guide πŸ› οΈ



gcc


ncurses


git

1. Install **gcc**
- [GCC Official](https://gcc.gnu.org/)
- Linux:
```bash
sudo apt install build-essential
```
- macOS:
```bash
brew install gcc
```
- Windows (MSYS2):
```bash
pacman -S mingw-w64-ucrt-x86_64-gcc
```

2. Install the **ncurses** library
- [Ncurses Official](https://invisible-island.net/ncurses/)
- Linux:
```bash
sudo apt install libncurses5-dev libncursesw5-dev
```
- macOS:
```bash
brew install ncurses
```
- Windows (MSYS2):
```bash
pacman -S mingw-w64-ucrt-x86_64-ncurses
```

3. Clone the project:
```bash
git clone https://github.com/dzobamain/autocliker-cpp
cd autocliker-cpp
```

---

## Compilation and Running πŸš€

### Linux/macOS

The compiled file will be created in the `build/` folder πŸŽ‰

```bash
./build.sh
./build/autoclicker
```

### Windows

The compiled file will be created in the build\ folder πŸŽ‰

```
build.bat
build\autoclicker.exe
```