mirror of
https://github.com/harivansh-afk/deskctl.git
synced 2026-04-15 03:00:45 +00:00
- Add imageproc and ab_glyph dependencies - Annotation module drawing colored bounding boxes per window - White @wN labels on dark background at each window's top-left - 8-color palette cycling for distinct window identification - Back-to-front iteration so topmost labels are not occluded - Embedded DejaVu Sans Mono font via include_bytes - Wire --annotate flag into snapshot pipeline
21 lines
621 B
TOML
21 lines
621 B
TOML
[package]
|
|
name = "desktop-ctl"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Desktop control CLI for AI agents - screenshot, click, type, window management on Linux X11"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/user/agent-computer"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
anyhow = "1"
|
|
dirs = "6"
|
|
libc = "0.2"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
xcap = "0.8"
|
|
image = { version = "0.25", features = ["png"] }
|
|
imageproc = "0.26"
|
|
ab_glyph = "0.2"
|