aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/desktop/idle_inhibit_v1.h4
-rw-r--r--include/sway/server.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/include/sway/desktop/idle_inhibit_v1.h b/include/sway/desktop/idle_inhibit_v1.h
index 94c25a42..1764713c 100644
--- a/include/sway/desktop/idle_inhibit_v1.h
+++ b/include/sway/desktop/idle_inhibit_v1.h
@@ -6,8 +6,12 @@
struct sway_idle_inhibitor_v1 {
struct sway_server *server;
+ struct sway_view *view;
+ struct wl_list link;
struct wl_listener destroy;
};
+void idle_inhibit_v1_check_active(struct sway_server *server);
+
#endif
diff --git a/include/sway/server.h b/include/sway/server.h
index 246a9381..693e6b82 100644
--- a/include/sway/server.h
+++ b/include/sway/server.h
@@ -32,6 +32,7 @@ struct sway_server {
struct wlr_idle_inhibit_manager_v1 *idle_inhibit_v1;
struct wl_listener new_idle_inhibitor_v1;
+ struct wl_list idle_inhibitors_v1;
struct wlr_layer_shell *layer_shell;
struct wl_listener layer_shell_surface;