2026-04-28 16:58:33 -07:00
|
|
|
use smithay::wayland::idle_notify::IdleNotifierHandler;
|
2024-04-19 14:57:17 +02:00
|
|
|
|
|
|
|
|
use crate::state::State;
|
|
|
|
|
|
|
|
|
|
impl IdleNotifierHandler for State {
|
|
|
|
|
fn idle_notifier_state(
|
|
|
|
|
&mut self,
|
|
|
|
|
) -> &mut smithay::wayland::idle_notify::IdleNotifierState<Self> {
|
|
|
|
|
&mut self.common.idle_notifier_state
|
|
|
|
|
}
|
|
|
|
|
}
|