aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway')
-rw-r--r--include/sway/config.h7
-rw-r--r--include/sway/server.h1
2 files changed, 8 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index b20458cb..f77c3b50 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -107,6 +107,12 @@ struct seat_config {
107 list_t *attachments; // list of seat_attachment configs 107 list_t *attachments; // list of seat_attachment configs
108}; 108};
109 109
110enum config_dpms {
111 DPMS_IGNORE,
112 DPMS_ON,
113 DPMS_OFF
114};
115
110/** 116/**
111 * Size and position configuration for a particular output. 117 * Size and position configuration for a particular output.
112 * 118 *
@@ -123,6 +129,7 @@ struct output_config {
123 129
124 char *background; 130 char *background;
125 char *background_option; 131 char *background_option;
132 enum config_dpms dpms_state;
126}; 133};
127 134
128/** 135/**
diff --git a/include/sway/server.h b/include/sway/server.h
index 296fbf22..ac685bf8 100644
--- a/include/sway/server.h
+++ b/include/sway/server.h
@@ -21,6 +21,7 @@ struct sway_server {
21 21
22 struct wlr_compositor *compositor; 22 struct wlr_compositor *compositor;
23 struct wlr_data_device_manager *data_device_manager; 23 struct wlr_data_device_manager *data_device_manager;
24 struct wlr_idle *idle;
24 25
25 struct sway_input_manager *input; 26 struct sway_input_manager *input;
26 27