-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.yaml
More file actions
28 lines (23 loc) · 1.02 KB
/
config.yaml
File metadata and controls
28 lines (23 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Auto-Cursor Configuration File
# Screen Region Configuration
# Format: [x, y, width, height]
# x, y: Top-left corner coordinates of the region
# width, height: Width and height of the region
# Timestamp region (used to detect if Cursor has finished the task)
timestamp_region:
x: <YOUR_TIMESTAMP_X_COORDINATE> # For example: 340
y: <YOUR_TIMESTAMP_Y_COORDINATE> # For example: 160
width: <YOUR_TIMESTAMP_WIDTH> # For example: 80
height: <YOUR_TIMESTAMP_HEIGHT> # For example: 20
# Terminal region (used to capture terminal output)
terminal_region:
x: <YOUR_TERMINAL_X_COORDINATE> # For example: 2050
y: <YOUR_TERMINAL_Y_COORDINATE> # For example: 875
width: <YOUR_TERMINAL_WIDTH> # For example: 450
height: <YOUR_TERMINAL_HEIGHT> # For example: 625
# Cursor window region (used to capture Cursor's output)
cursor_region:
x: <YOUR_CURSOR_X_COORDINATE> # For example: 450
y: <YOUR_CURSOR_Y_COORDINATE> # For example: 50
width: <YOUR_CURSOR_WIDTH> # For example: 970
height: <YOUR_CURSOR_HEIGHT> # For example: 1180