rs_blocks/
lib.rs

1// Copyright ⓒ 2019-2021 Lewis Belcher
2// Licensed under the MIT license (see LICENSE or <http://opensource.org/licenses/MIT>).
3// All files in the project carrying such notice may not be copied, modified, or
4// distributed except according to those terms
5
6//! # Rust Blocks
7//!
8//! A lightweight i3/sway status bar written in Rust.
9//!
10//! See the [README](https://crates.io/crates/rs-blocks) for project details, or
11//! [blocks documentation](https://docs.rs/rs-blocks/latest/rs_blocks/blocks/index.html)
12//! for available blocks and configurations.
13
14#[macro_use]
15extern crate lazy_static;
16
17pub mod args;
18pub mod blocks;
19pub mod ema;
20pub mod utils;