penrose 0.4.0

A tiling window manager library inspired by dwm and xmonad
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Hook implementations and helpers for adding to your Penrose window manager
pub mod default_workspaces;
pub mod ewmh;
pub mod manage;
pub mod named_scratchpads;
pub mod startup;
pub mod window_swallowing;

pub use ewmh::add_ewmh_hooks;
pub use named_scratchpads::{add_named_scratchpads, NamedScratchPad, ToggleNamedScratchPad};
pub use startup::SpawnOnStartup;
pub use window_swallowing::WindowSwallowing;