Update docs

This commit is contained in:
Wojciech Kozlowski 2018-12-26 18:42:59 +05:30
parent 8a0cce5c9c
commit 161c8ff081
2 changed files with 14 additions and 11 deletions

View File

@ -1,10 +1,12 @@
//! # rwmstatus-lib
//! # rwmstatus
//!
//! Library for status monitor displays.
//! Library for status monitor displays. It provides functions to obtain
//! readouts about system status such as battery status or temperature.
//!
//! This is part of a larger project to port various
//! [suckless.org](https://suckless.org/) programs to Rust, a programming
//! language that sucks less.
//! This is part of my [Rust Sucks
//! Less](https://wojciechkozlowski.eu/rust-sucks-less/) project to port some
//! of the [suckless.org](https://suckless.org/) programs and tools to Rust, a
//! programming language that sucks less.
// External crates
extern crate chrono;

View File

@ -1,12 +1,13 @@
//! # rwmstatus
//!
//! Status monitor bar for the dwm/rwm window manager (or any WM which uses
//! WM_NAME of the X11 root window as its status bar). It is a direct port of
//! [dwmstatus](https://dwm.suckless.org/status_monitor/) to Rust.
//! Status monitor bar binary for the dwm/rwm window manager (or any WM which
//! uses WM_NAME of the X11 root window as its status bar). It is a direct
//! port of [dwmstatus](https://dwm.suckless.org/status_monitor/) to Rust.
//!
//! This is part of a larger project to port various
//! [suckless.org](https://suckless.org/) programs to Rust, a programming
//! language that sucks less.
//! This is part of my [Rust Sucks
//! Less](https://wojciechkozlowski.eu/rust-sucks-less/) project to port some
//! of the [suckless.org](https://suckless.org/) programs and tools to Rust, a
//! programming language that sucks less.
// Lib import
extern crate rwmstatus;