2 releases

Uses old Rust 2015

0.1.1 Feb 15, 2019
0.1.0 Nov 2, 2018

#4 in #logind

Download history 3/week @ 2024-02-15 21/week @ 2024-02-22 13/week @ 2024-02-29 11/week @ 2024-03-07 9/week @ 2024-03-14 7/week @ 2024-03-21 35/week @ 2024-03-28 27/week @ 2024-04-04 4/week @ 2024-04-11

76 downloads per month

MIT license

5KB

logind-dbus

Rust crate that provides a DBus API for interacting with logind, which is useful for doing things such as inhibiting suspension.

extern crate logind_dbus;
use logind_dbus::LoginManager;

pub fn main() -> io::Result<()> {
    let login_manager = LoginManager::new()?;
    let suspend_lock = login_manager.connect().inhibit_suspend()?;
    /// Do sensitive thing with the guarantee that suspend will not work.
}

lib.rs:

Provides a DBus API for interacting with logind, which is useful for doing things such as inhibiting suspension.

extern crate logind_dbus;
use logind_dbus::LoginManager;

pub fn main() -> io::Result<()> {
    let login_manager = LoginManager::new()?;
    let suspend_lock = login_manager.connect().inhibit_suspend()?;
    /// Do sensitive thing with the guarantee that suspend will not work.
}

Dependencies

~5MB
~114K SLoC