Files
tmux-helper/src/main.rs

122 lines
3.6 KiB
Rust
Raw Normal View History

2019-11-28 17:59:24 +03:00
extern crate dbus;
2019-11-29 18:17:57 +03:00
use crate::dbus::blocking::stdintf::org_freedesktop_dbus::Properties;
use dbus::{arg, blocking::Connection};
use std::{collections::HashMap, env, fs, time::Duration};
2019-11-21 01:14:53 +03:00
use sys_info;
const LOW: &str = "#[fg=colour186]";
const MID: &str = "#[fg=colour208]";
const HIGH: &str = "#[fg=colour160]";
const END: &str = "#[fg=colour7]";
fn read_file(file_path: &str) -> String {
2019-11-28 18:00:00 +03:00
fs::read_to_string(file_path).expect("Cant read file.")
2019-11-21 01:14:53 +03:00
}
2019-11-23 22:24:42 +03:00
fn to_bar(value: i32, max: i32, low: f32, mid: f32) {
let mut bar = "".to_string();
let bar_sym = "".to_string();
if (value as f32) / (max as f32) < low {
bar.push_str(LOW);
} else if (value as f32) / (max as f32) < mid {
bar.push_str(MID);
} else {
bar.push_str(HIGH);
}
for i in 0..max {
if i < value as i32 {
bar.push_str(&bar_sym);
2019-11-28 18:00:00 +03:00
} else {
bar.push_str(" ")
}
2019-11-23 22:24:42 +03:00
}
bar.push_str(END);
bar.push_str("|");
print!("{}", bar)
}
fn mem_load_bar(bar_len: i32) {
2019-11-21 01:14:53 +03:00
let memory;
match sys_info::mem_info() {
Err(w) => panic!("{:?}", w),
Ok(mem_data) => memory = mem_data,
}
2019-11-28 18:00:00 +03:00
let len =
((memory.total - memory.avail) as f32 / (memory.total as f32) * bar_len as f32) as i32;
2019-11-23 22:24:42 +03:00
to_bar(len, bar_len, 0.7, 0.9);
2019-11-28 18:00:00 +03:00
print!("{:.0} MiB", memory.avail / 1024);
2019-11-21 01:14:53 +03:00
}
2019-11-23 22:24:42 +03:00
fn cpu_load_bar(bar_len: i32) {
2019-11-21 01:14:53 +03:00
let load = read_file("/proc/loadavg");
let load_data = load.split_whitespace().collect::<Vec<&str>>();
let _cpu_count = read_file("/proc/cpuinfo");
let cpu_count = _cpu_count.matches("model name").count();
let one: f32 = load_data[0].parse().unwrap();
2019-11-23 22:24:42 +03:00
let len: f32 = one as f32 / cpu_count as f32 * bar_len as f32;
to_bar(len as i32, bar_len, 0.3, 0.7);
print!("{:.2} LA1", one);
2019-11-21 01:14:53 +03:00
}
2019-11-29 18:17:57 +03:00
fn print_refarg(value: &dyn arg::RefArg) {
// We don't know what type the value is. We'll try a few and fall back to
// debug printing if the value is more complex than that.
if let Some(s) = value.as_str() {
println!("{}", s);
} else if let Some(i) = value.as_i64() {
println!("{}", i);
// } else if let Some(mut c) = value.as_iter() {
// while let Some(key) = c.next() {
// // Printing the key is easy, since we know it's a String.
// print!(" {}: ", key.as_str().unwrap());
// let val = c.next().unwrap();
// print_refarg(&val);
// }
} else {
println!("{:?}", value);
}
}
2019-11-28 17:59:24 +03:00
fn player_info() -> Result<(), Box<dyn std::error::Error>> {
let conn = Connection::new_session()?;
2019-11-28 18:00:00 +03:00
let proxy = conn.with_proxy(
"org.mpris.MediaPlayer2.cmus",
"/org/mpris/MediaPlayer2",
Duration::from_millis(5000),
);
2019-11-29 18:17:57 +03:00
let metadata: Box<dyn arg::RefArg> =
proxy.get("org.mpris.MediaPlayer2.Player", "Metadata")?;
let mut iter = metadata.as_iter().unwrap();
2019-11-28 17:59:24 +03:00
2019-11-29 18:17:57 +03:00
println!("Option 2:");
while let Some(key) = iter.next() {
// Printing the key is easy, since we know it's a String.
print!(" {}: ", key.as_str().unwrap());
let value = iter.next().unwrap();
print_refarg(&value);
2019-11-28 18:00:00 +03:00
}
2019-11-28 17:59:24 +03:00
Ok(())
}
2019-11-21 01:14:53 +03:00
fn main() {
2019-11-28 18:00:00 +03:00
let args: Vec<String> = env::args().collect();
let help_text: &str = "Available commands -mb, -cb";
match args.len() {
2019-11-21 01:14:53 +03:00
1 => {
2019-11-23 22:24:42 +03:00
panic!(help_text);
2019-11-28 18:00:00 +03:00
}
2 => match args[1].as_ref() {
"-cb" => cpu_load_bar(15),
"-mb" => mem_load_bar(15),
"-p" => {
let x = player_info();
2019-11-29 18:17:57 +03:00
println!("{:?}", x);
2019-11-21 01:14:53 +03:00
}
2019-11-28 18:00:00 +03:00
_ => panic!(help_text),
2019-11-21 01:14:53 +03:00
},
_ => {
2019-11-23 22:24:42 +03:00
panic!(help_text);
2019-11-21 01:14:53 +03:00
}
2019-11-28 18:00:00 +03:00
}
2019-11-21 01:14:53 +03:00
}