libawm 0.1.0

the library that powers awm - forked from penrose
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Functionality extensions for penrose
//!
//! Most of these extension work by spawning and / or managing external programs as a sub-process.
pub mod dmenu;
pub mod notify_send;
pub mod scratchpad;

#[doc(inline)]
pub use dmenu::*;

#[doc(inline)]
pub use notify_send::*;

#[doc(inline)]
pub use scratchpad::Scratchpad;