shellshot 0.5.0

Transform your command-line output into clean, shareable images with a single command.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![crate_type = "lib"]
#![deny(missing_debug_implementations)]
#![deny(missing_docs)]
#![doc = include_str!("../README.md")]

mod app;
mod constants;
mod image_generator;
mod image_renderer;
mod pty_executor;
mod terminal_builder;
mod theme;
mod window_decoration;

pub use app::{Args, run_shellshot};
pub use window_decoration::WindowDecorationType;