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 //! This is part of my [Rust Sucks
//! [suckless.org](https://suckless.org/) programs to Rust, a programming //! Less](https://wojciechkozlowski.eu/rust-sucks-less/) project to port some
//! language that sucks less. //! of the [suckless.org](https://suckless.org/) programs and tools to Rust, a
//! programming language that sucks less.
// External crates // External crates
extern crate chrono; extern crate chrono;

View File

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