add device configuration

This commit is contained in:
Tony Crisci 2017-08-25 09:40:01 -04:00
parent 699d489f93
commit d0cf8d0d01
4 changed files with 91 additions and 22 deletions

View file

@ -12,12 +12,19 @@ struct output_config {
struct wl_list link;
};
struct device_config {
char *name;
char *mapped_output;
struct wl_list link;
};
struct example_config {
struct {
char *mapped_output;
} cursor;
struct wl_list outputs;
struct wl_list devices;
char *config_path;
};