rxscreen 0.1.7

A wrapper around libx11 to capture screenshots and save them
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, dead_code, improper_ctypes, clippy::module_inception)]
mod ffi;
pub mod constants;
pub mod events;
pub use ffi::*;

#[cfg(feature = "shm")]
pub mod shm;
#[cfg(feature = "shm")]
pub use shm::*;

#[cfg(feature = "xrandr")]
pub mod xrandr;

#[cfg(feature = "mouse")]
pub mod mouse;