Cursor Tracker is a Python-based desktop utility for real-time cursor visualization, designed for OpenTabletDriver users.
It features customizable trails, colors, tablet area mapping, and OBS overlay support, making it perfect for digital artists, streamers, and educators.
With automatic tablet detection and full OpenTabletDriver integration, setup is simple—just run and start tracking!
- Real-time cursor tracking with smooth movement visualization
- Customizable cursor trail with fade effects and adjustable length
- Color customization for cursor, trail, and background
- Tablet area mapping with active area visualization
- Mini-map display showing full tablet area and cursor position
- Settings persistence - save and load your preferences
- OBS overlay support with borderless window options
- OpenTabletDriver integration - automatically detects tablet configurations
- Automated tablet detection using a custom
opentabletdriver.daemon.exe
oropentabletdriver.customdaemon.exe
(no manual selection required for most tablets; included in the install package)
- Python 3.7+
- OpenTabletDriver (optional, for tablet configuration detection)
- The custom
opentabletdriver.daemon.exe
oropentabletdriver.customdaemon.exe
is already included in the install package. You do not need to manually place it beside the executable.
pip install pygame pyautogui numpy
# Install PyInstaller
pip install pyinstaller
# Build executable with configurations
pyinstaller --onefile --console ^
--add-data "Configurations;Configurations" ^
--add-data "cursor_logo.png;." ^
--add-data "cursor_logo.ico;." ^
--add-data "opentabletdriver.customdaemon.exe;." ^
--name "CursorTracker" cursortracker.py
- 🎨 Digital artists who want to visualize their pen movement
- 🎥 Streamers who want cursor trails in OBS overlays
- 🖱️ Developers testing cursor & input tracking
- 📊 Educators making tutorials with live cursor visualization
Normal mode (hidden console):
CursorTracker.exe
Debug mode (visible console):
CursorTracker.exe -console
- The application now features automatic tablet detection using a custom
opentabletdriver.daemon.exe
oropentabletdriver.customdaemon.exe
. - The custom daemon executable is included in the install package. No manual placement is required.
- When you launch the app, it will attempt to detect your connected tablet automatically and select the correct configuration.
- If your tablet is not detected, you will be prompted to select a similar configuration manually.
- This automation reduces setup time and improves user experience for most OpenTabletDriver-compatible tablets.
- Settings Button: Opens the settings panel
- Alt Key: Toggle OBS overlay options
- 1 Key: Toggle borderless window mode
- 2 Key: Hide UI elements
- 3 Key: Hide UI + mini-map
The settings panel allows you to customize:
- Colors: Cursor, trail, rectangle, and background colors
- Trail Settings: Length, smoothness, thickness, and fade effects
- Grid Settings: Enable/disable grids on main and mini displays
- Active Area: Configure tablet active area dimensions
- File Operations: Save, load, and reset settings
This application includes tablet configuration files from OpenTabletDriver. These files contain digitizer specifications for various tablet models and are used to automatically detect tablet dimensions.
Automatic Detection:
- The app uses a custom
opentabletdriver.daemon.exe
oropentabletdriver.customdaemon.exe
to detect your connected tablet and select the appropriate configuration automatically. - The daemon is included in the install package.
- If detection fails, you can still manually select a configuration from the provided list.
Credits: Tablet configuration files are sourced from the OpenTabletDriver project under LGPL-3.0 license.
The application creates several configuration files in the same directory as the executable:
cursor_settings.json
- Main application settingssettings_config.json
- OpenTabletDriver settings pathlast_settings_path.json
- Last used settings file path
Tablet not detected:
- Ensure OpenTabletDriver is running
- Check that your tablet is properly connected
- Verify OpenTabletDriver settings.json path is correct
- The custom
opentabletdriver.daemon.exe
oropentabletdriver.customdaemon.exe
is included in the install package.
Configuration not found:
- The application will prompt you to select a similar tablet configuration
- You can manually select from the available configurations
Performance issues:
- Reduce trail length in settings
- Disable trail fade effects
- Lower trail thickness
# Clone or download the source code
# Install dependencies
pip install pygame pyautogui numpy
# Run the application
python cursortracker.py
This project is open source. The tablet configuration files are sourced from OpenTabletDriver under LGPL-3.0 license.
- Tablet Configurations: OpenTabletDriver - Open source, cross-platform tablet driver
- Python Libraries: pygame, pyautogui, numpy