istat 0.6.0

A lightweight and batteries-included status_command for i3 and sway
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use zbus::dbus_proxy;

#[dbus_proxy(
    default_path = "/org/freedesktop/Notifications",
    default_service = "org.freedesktop.Notifications",
    interface = "org.dunstproject.cmd0",
    gen_blocking = false
)]
trait Dunst {
    #[dbus_proxy(property, name = "paused")]
    fn paused(&self) -> zbus::Result<bool>;
}