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
- Host: GitHub
- URL: https://github.com/dzobamain/console-autocliker
- Owner: dzobamain
- Created: 2024-12-26T10:59:19.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-13T16:21:35.000Z (10 months ago)
- Last Synced: 2025-09-13T18:24:00.202Z (10 months ago)
- Topics: auto-clicker, console, cpp, functions
- Language: C++
- Homepage:
- Size: 112 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 π οΈ
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
```