rsblocks/src/types.rs
Mustafa Salih 6c0dfddead
Reads network bandwith (#39)
* updated crate version

* updated crate version

* rsblocks now reads netspeed per second
2021-01-26 02:44:13 +03:00

143 lines
2.4 KiB
Rust

use breadx::{display::*, window::Window};
#[derive(Debug, Clone)]
pub enum ThreadsData {
Mpd(String),
Sound(String),
Disk(String),
Memory(String),
Time(String),
Weather(String),
Battery(String),
CpuTemp(String),
Uptime(String),
Spotify(String),
LoadAvg(String),
NetSpeed(String),
}
#[derive(Clone)]
pub struct Config {
pub seperator: String,
pub time: Time,
pub memory: Memory,
pub disk: Disk,
pub volume: Volume,
pub weather: Weather,
pub battery: Battery,
pub cpu_temperature: CpuTemp,
pub uptime: Uptime,
pub mpd: Mpd,
pub spotify: Spotify,
pub loadavg: LoadAvg,
}
#[derive(Clone)]
pub struct Time {
pub format: String,
pub icon: String,
pub delay: f64,
}
#[derive(Clone)]
pub struct Memory {
pub icon: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct Disk {
pub icon: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct Volume {
pub icon: String,
pub enabled: bool,
pub delay: f64,
pub card: String,
}
#[derive(Clone)]
pub struct Weather {
pub city: String,
pub format: String,
pub icon: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct Battery {
pub source: String,
pub icon: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct CpuTemp {
pub icon: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct Uptime {
pub icon: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct Mpd {
pub icon: String,
pub host: String,
pub port: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct Spotify {
pub icon: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct LoadAvg {
pub icon: String,
pub enabled: bool,
pub delay: f64,
}
#[derive(Clone)]
pub struct NetSpeed {
pub transmit_icon: String,
pub recieve_icon: String,
pub interface: String,
pub enabled: bool,
}
pub struct Blocks {
pub disp: Display<name::NameConnection>,
pub root: Window,
}
impl Blocks {
pub fn new() -> Self {
let disp = Display::create(None, None).expect("Failed to create x11 connection");
let root = disp.default_screen().root;
Self { disp, root }
}
}
impl Default for Blocks {
fn default() -> Self {
Self::new()
}
}