diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-02-24 10:15:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-24 10:15:18 -0500 |
commit | b7b86a959188d5b2e47a2a4182c6041b022d68c2 (patch) | |
tree | bc1c72a6d2c026ec741809f5e7f1a9fb2229c28d /include/rootston | |
parent | 94d53d53f9a13e76bf35e072de2947be3c2f7125 (diff) | |
parent | 67285c1d5758526688f0023e27c4a6b24730a2fa (diff) |
Merge pull request #641 from Ongy/idle-inhibit
Add idle-inhibit implementation
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/desktop.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/rootston/desktop.h b/include/rootston/desktop.h index 0132a7e8..ab3ae61a 100644 --- a/include/rootston/desktop.h +++ b/include/rootston/desktop.h @@ -16,6 +16,10 @@ #include <wlr/types/wlr_xcursor_manager.h> #include <wlr/types/wlr_xdg_shell_v6.h> #include <wlr/types/wlr_xdg_shell.h> +#include <wlr/types/wlr_list.h> +#include <wlr/types/wlr_idle.h> +#include <wlr/types/wlr_idle_inhibit_v1.h> +#include "rootston/view.h" #include "rootston/config.h" #include "rootston/output.h" #include "rootston/view.h" @@ -41,6 +45,7 @@ struct roots_desktop { struct wlr_server_decoration_manager *server_decoration_manager; struct wlr_primary_selection_device_manager *primary_selection_device_manager; struct wlr_idle *idle; + struct wlr_idle_inhibit_manager_v1 *idle_inhibit; struct wl_listener new_output; struct wl_listener layout_change; |