feat: add support to two new wayland protocols

- Idle notify
- Idle inhibit
This commit is contained in:
DanyLE
2025-07-07 16:37:23 +02:00
parent dd8242abc6
commit 194b7894cd
6 changed files with 97 additions and 2 deletions

9
idle.h Normal file
View File

@ -0,0 +1,9 @@
#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