wallflow 0.5.2

Elegant wallpaper management with smooth transitions, powered by awww
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Template rendering for terminal and app theming
//!
//! This module handles rendering color scheme templates from extracted wallpaper colors.
//! Templates use simple `{variable}` substitution.
//!
//! Templates are downloaded from the wallflow-templates GitHub repo on first use
//! and stored locally in `~/.config/mksg/wallflow/templates/`.

mod download;
mod engine;
mod manifest;

pub use download::{ensure_templates, templates_dir};
pub use engine::TemplateEngine;
#[allow(unused_imports)]
pub use manifest::{Detection, InstallConfig, ReloadConfig, TemplateFile, TemplateManifest, UiConfig};