Files
diyac/idle.h
DanyLE 194b7894cd feat: add support to two new wayland protocols
- Idle notify
- Idle inhibit
2025-07-07 16:37:23 +02:00

9 lines
206 B
C

#ifndef DIYAC_IDLE_H
#define DIYAC_IDLE_H
struct wl_display;
struct wlr_seat;
void diya_init_idle_manager(struct wl_display *display);
void diya_idle_manager_notify_activity(struct wlr_seat *seat);
#endif