wm.rs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. use xcb;
  2. use x11;
  3. use comm;
  4. use comm::Channel;
  5. use config::Config;
  6. use std::thread;
  7. use std::time::Duration;
  8. pub fn wait_for<F>(f: F) -> xcb::Window where F: Fn() -> xcb::Window {
  9. loop {
  10. let w = f();
  11. if w == 0 {
  12. thread::sleep(Duration::from_millis(100));
  13. }
  14. else {
  15. return w;
  16. }
  17. }
  18. }
  19. pub fn wm(tx: &Channel, _config: &Config) {
  20. if let Some(conn) = x11::Connection::new() {
  21. let screen = conn.default_screen();
  22. let mut last_win = screen.get_active_window();
  23. comm::send(tx, "title", conn.get_window_name(last_win).as_ref());
  24. let stalonetray = wait_for(|| screen.search_by_class("stalonetray"));
  25. let panel = wait_for(|| screen.search_by_name("__panel_top"));
  26. let width = xcb::get_geometry(&conn, stalonetray).get_reply().unwrap().width();
  27. xcb::configure_window(&conn, stalonetray, &[
  28. (xcb::CONFIG_WINDOW_X as u16, (screen.width - width) as u32),
  29. (xcb::CONFIG_WINDOW_SIBLING as u16, panel),
  30. (xcb::CONFIG_WINDOW_STACK_MODE as u16, xcb::STACK_MODE_ABOVE)
  31. ]);
  32. xcb::change_window_attributes(&conn, stalonetray, &[(xcb::CW_EVENT_MASK, xcb::EVENT_MASK_STRUCTURE_NOTIFY)]);
  33. conn.watch(screen.root, true);
  34. conn.watch(last_win, true);
  35. conn.flush();
  36. conn.event_loop(&mut |event: &xcb::GenericEvent| {
  37. match event.response_type() {
  38. xcb::PROPERTY_NOTIFY => {
  39. let prop_event: &xcb::PropertyNotifyEvent = xcb::cast_event(event);
  40. if prop_event.atom() == conn.atom(x11::_NET_ACTIVE_WINDOW) {
  41. let new_win = screen.get_active_window();
  42. conn.watch(last_win, false);
  43. conn.watch(new_win, true);
  44. conn.flush();
  45. last_win = new_win;
  46. comm::send(tx, "title", conn.get_window_name(last_win).as_ref());
  47. }
  48. else if prop_event.atom() == conn.atom(x11::_NET_WM_NAME) {
  49. comm::send(tx, "title", conn.get_window_name(last_win).as_ref());
  50. }
  51. },
  52. xcb::CONFIGURE_NOTIFY => {
  53. let event: &xcb::ConfigureNotifyEvent = unsafe { xcb::cast_event(&event) };
  54. let spacer = format!("%{{O{}}}", event.width()+5);
  55. comm::send(tx, "spacer", spacer.as_ref());
  56. },
  57. _ => ()
  58. }
  59. });
  60. } else {
  61. println!("Could not connect to X!");
  62. }
  63. }