leftwm-core 0.5.4

A window manager for Adventurers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod command_handler;
pub mod display_event_handler;
mod focus_handler;
mod goto_tag_handler;
mod mouse_combo_handler;
mod screen_create_handler;
mod window_handler;
mod window_move_handler;
mod window_resize_handler;

use super::command::Command;
use super::config::Config;
use super::models::{
    Manager, Mode, Screen, Window, WindowChange, WindowHandle, WindowType, Workspace,
};
use super::DisplayEvent;