bar.rs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. use config::Config;
  2. use std::io::prelude::*;
  3. use std::io::BufReader;
  4. use std::process::{ChildStdin, ChildStdout, Command, Stdio};
  5. use std::thread;
  6. pub struct Bar {
  7. stdin: ChildStdin
  8. }
  9. impl Bar {
  10. pub fn new(top: bool, cfg: &Config) -> Bar {
  11. let val = cfg.lookup("bar.fonts").unwrap();
  12. let fonts = val.as_slice().unwrap();
  13. let fonts = fonts.iter().flat_map(|elem| elem.as_str());
  14. let mut bar = Command::new("lemonbar");
  15. bar.stdin(Stdio::piped());
  16. bar.stdout(Stdio::piped());
  17. if !top {
  18. bar.arg("-b");
  19. }
  20. for font in fonts {
  21. bar.arg("-f");
  22. bar.arg(font);
  23. }
  24. let child = bar.spawn()
  25. .ok()
  26. .expect("Failed to start lemonbar");
  27. let stdout = child.stdout.unwrap();
  28. Bar::read_loop(stdout);
  29. Bar { stdin: child.stdin.unwrap() }
  30. }
  31. fn read_loop(stdout: ChildStdout) {
  32. thread::spawn(move || {
  33. let mut s = String::new();
  34. let mut reader = BufReader::new(stdout);
  35. loop {
  36. s.clear();
  37. reader.read_line(&mut s).ok().expect("Failed to read from lemonbar");
  38. let mut chars = s.trim().chars();
  39. let kind = chars.next().unwrap();
  40. let name = chars.collect::<String>();
  41. match kind {
  42. 'w' => Command::new("bspc")
  43. .arg("desktop")
  44. .arg("-f")
  45. .arg(&name)
  46. .output()
  47. .ok(),
  48. 'c' => Command::new("cmus-remote")
  49. .arg("--pause")
  50. .output()
  51. .ok(),
  52. 'm' => Command::new("mpc")
  53. .arg("toggle")
  54. .output()
  55. .ok(),
  56. _ => None
  57. };
  58. }
  59. });
  60. }
  61. pub fn send(&mut self, text: &str) {
  62. writeln!(&mut self.stdin, "{}", text).ok();
  63. }
  64. }