redblocks 0.2.4

modular status bar for dwm and the like written in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "weather")]
use openweathermap::Receiver;
/// Weather Plugin

#[cfg(feature = "weather")]
pub struct WeatherPlugin<T, U, V> {
    city: u64,
    receiver: Receiver,
    future: std::future::Future<Output = String>,
    output: String,
}