focus-tracker-core 1.1.0

The core types for the focus tracker crate
Documentation
1
2
3
4
5
6
7
8
9
use std::sync::Arc;

#[derive(Debug, Clone)]
pub struct FocusedWindow {
    pub process_id: u32,
    pub process_name: String,
    pub window_title: Option<String>,
    pub icon: Option<Arc<image::RgbaImage>>,
}