streamware

Desktop Automation Examples

Control mouse, keyboard, and automate desktop tasks.

📁 Examples

File Description
mouse_control.py Mouse clicks and movement
keyboard_control.py Typing and hotkeys
screenshot_ocr.py Screenshot and text extraction
ai_automation.py AI-powered task automation
form_filler.sh Automate form filling

🚀 Quick Start

# Take screenshot
sq auto screenshot --text /tmp/screen.png

# Click at position
sq auto click --x 100 --y 200

# Type text
sq auto type --text "Hello World"

# Press hotkey
sq auto hotkey --keys ctrl+s

# AI automation (natural language)
sq auto automate --task "click the submit button"

🔧 Requirements

# System tools (recommended)
sudo apt-get install xdotool scrot

# Or Python packages
pip install pyautogui Pillow

🔗 Source Code