wallflow 0.5.2

Elegant wallpaper management with smooth transitions, powered by awww
Documentation
// Platform-specific backend modules
#[cfg(target_os = "linux")]
pub mod linux;

#[cfg(target_os = "macos")]
pub mod macos;

#[cfg(target_os = "windows")]
pub mod windows;

pub mod traits;

pub mod registry;

#[cfg(target_os = "linux")]
pub mod awww;

#[cfg(target_os = "linux")]
pub mod gnome;

pub use registry::BackendRegistry;
pub use traits::WallpaperBackend;

#[cfg(target_os = "linux")]
pub use awww::AwwwBackend;