Screenshot Tool
Capture screenshots and screen recordings.
Quick Start
# Take screenshot
python scripts/screenshot.py --capture
# Capture specific window
python scripts/screenshot.py --window "Chrome"
Usage
python scripts/screenshot.py [OPTIONS]
Options:
--capture Take screenshot
--record Start screen recording
--stop Stop recording
--window NAME Capture specific window
--area X,Y,W,H Capture area (x,y,width,height)
--output PATH Output file path
--format FORMAT Format: png, jpg (default: png)
Examples
# Full screen
python scripts/screenshot.py --capture
# Window
python scripts/screenshot.py --window "Terminal" --output terminal.png
# Region
python scripts/screenshot.py --area 0,0,800,600 --output region.png
# With delay
python scripts/screenshot.py --delay 5 --output delayed.png
Features
- Full screen capture
- Window capture
- Region capture
- Screen recording
- Delayed capture
- Multiple formats