focus_tracker_core/
lib.rs1mod config;
2mod error;
3mod focus_window;
4mod ignore_rules;
5
6pub use config::{FocusTrackerConfig, IconConfig};
7pub use error::{FocusTrackerError, FocusTrackerResult};
8pub use focus_window::FocusedWindow;
9pub use ignore_rules::{IgnoreRule, IgnoreRules, ProcessNameMatch, WindowTitleMatch};