Crate btui[][src]

Expand description

btui

beautiful text user interfaces

with btui you can create beautiful text user interfaces for the terminal. To get started add btui as a dependency to your project:

btui = "0.6.5"

Examples

This is a basic coloring example which will output hello world in red:

use btui::effects::{Color, Special};
use btui::print::{fg, sp};

println!("{}Hello World!{}", fg(Color::Red), sp(Special::Reset));

Modules

module containing enums to represent terminal effects

module containing stuff for basic linux based print operations

module containing a progressbar

module for giving printable escape sequences