-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathlib.rs
More file actions
22 lines (20 loc) · 645 Bytes
/
Copy pathlib.rs
File metadata and controls
22 lines (20 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Headless orchestration shared by the OpenLogi background agent and
//! (transitionally) the GUI.
//!
//! Everything here is GUI-free: the CGEventTap hook runtime, background HID++
//! writes, DPI-cycle state, and binding-map construction. It was extracted from
//! `openlogi-gui` so the always-on agent process can own the input/device path
//! without linking gpui.
pub mod bindings;
pub mod capture_plan;
pub mod device_order;
mod dpi;
pub mod event_monitor;
pub mod hardware;
pub mod hook_runtime;
pub mod ipc;
pub mod orchestrator;
pub mod receiver_access;
pub mod transport;
pub mod watchers;
pub use dpi::{DpiCycleState, DpiCycles};