bar.rs 686 B

123456789101112131415161718192021222324252627282930
  1. use std::io::Write;
  2. use std::process::{ChildStdin, Command, Stdio};
  3. pub struct Bar {
  4. stdin: ChildStdin
  5. }
  6. impl Bar {
  7. pub fn new(top: bool) -> Bar {
  8. let mut bar = Command::new("lemonbar");
  9. if !top {
  10. bar.arg("-b");
  11. }
  12. let child = bar
  13. .arg("-f")
  14. .arg("Inconsolatazi4:size=12")
  15. .arg("-f")
  16. .arg("Ionicons:size=12")
  17. .stdin(Stdio::piped())
  18. .spawn()
  19. .ok()
  20. .expect("Failed to start lemonbar");
  21. Bar { stdin: child.stdin.unwrap() }
  22. }
  23. pub fn send(&mut self, text: &str) {
  24. writeln!(&mut self.stdin, "{}", text).ok();
  25. }
  26. }