diff options
author | emersion <contact@emersion.fr> | 2017-12-06 12:36:06 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-12-06 12:36:06 +0100 |
commit | aaae59026ff3751190b93277ac6d7566e373c892 (patch) | |
tree | 2dc365f9ceeb6a08a98e08d2f79fcc940624b199 /include/sway/config.h | |
parent | 3fe64482bb269a3dcceeaf1107b9d59dc60eb8d0 (diff) |
Add output config
Diffstat (limited to 'include/sway/config.h')
-rw-r--r-- | include/sway/config.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index 7de85ab7..1b49c5c9 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -6,6 +6,7 @@ #include <libinput.h> #include <stdint.h> #include <string.h> +#include <wayland-server.h> #include <wlr/types/wlr_box.h> #include <xkbcommon/xkbcommon.h> #include <time.h> @@ -80,8 +81,11 @@ struct output_config { char *name; int enabled; int width, height; + float refresh_rate; int x, y; int scale; + enum wl_output_transform transform; + char *background; char *background_option; }; |