11 breaking releases
0.16.0 | Dec 31, 2022 |
---|---|
0.15.0 | Jul 5, 2022 |
0.14.0 | Dec 10, 2021 |
0.13.0 |
|
0.5.0 | Apr 21, 2019 |
#7 in #window-event
94 downloads per month
Used in 3 crates
41KB
884 lines
i3-ipc (synchronous)
A synchronous i3 IPC library. For async see tokio-i3ipc.
Subscribe
Subscribing to events is easy:
use i3_ipc::{
event::{Event, Subscribe},
I3Stream,
};
use std::io;
fn main() -> io::Result<()> {
let mut i3 = I3Stream::conn_sub(&[Subscribe::Window, Subscribe::Workspace])?;
for e in i3.listen() {
match e? {
Event::Workspace(ev) => println!("workspace change event {:?}", ev),
Event::Window(ev) => println!("window event {:?}", ev),
Event::Output(ev) => println!("output event {:?}", ev),
Event::Mode(ev) => println!("mode event {:?}", ev),
Event::BarConfig(ev) => println!("bar config update {:?}", ev),
Event::Binding(ev) => println!("binding event {:?}", ev),
Event::Shutdown(ev) => println!("shutdown event {:?}", ev),
Event::Tick(ev) => println!("tick event {:?}", ev),
}
}
Ok(())
}
Get
Getting information is equally easy, use any get_*
method or run_command
to send a message to i3:
use i3_ipc::{Connect, I3};
use std::io;
fn main() -> io::Result<()> {
let mut i3 = I3::connect()?;
let workspaces = i3.get_workspaces()?;
println!("{:?}", workspaces);
Ok(())
}
Dependencies
~0.7–1.6MB
~34K SLoC