11 unstable releases

0.6.0 Oct 18, 2023
0.5.3 Apr 29, 2023
0.5.2 Sep 8, 2022
0.5.1 Jan 26, 2022
0.1.1 Feb 1, 2020

#269 in GUI

Download history 94/week @ 2024-02-19 62/week @ 2024-02-26 32/week @ 2024-03-04 58/week @ 2024-03-11 24/week @ 2024-03-18 49/week @ 2024-04-01 31/week @ 2024-04-08 62/week @ 2024-04-15

146 downloads per month
Used in 2 crates

MIT/Apache

14KB
275 lines

Get the idle time of a user

OS Supported
Linux (x11) ✔️
Linux (dbus) ✔️*
Linux (wayland)
Windows ✔️
MacOS ✔️

* DBus returns the time the session has been locked, not the time since the last user input event.

By default, x11 is used on Linux. DBus can be enabled in Cargo.toml by disabling default-features and enabling dbus.

Example

use user_idle::UserIdle;

let idle = UserIdle::get_time().unwrap();

let idle_seconds = idle.as_seconds();
let idle_minutes = idle.as_minutes();

Check the documentation for more methods


lib.rs:

Get the idle time of a user

The time returned is the time since the last user input event

See the README.md for more information

Example:

use user_idle::UserIdle;
let idle = UserIdle::get_time().unwrap();
let idle_seconds = idle.as_seconds();
let idle_minutes = idle.as_minutes();

Dependencies

~0–12MB
~106K SLoC