1
0
mirror of https://github.com/emersion/kanshi synced 2024-09-20 02:41:46 +02:00
kanshi/include/config.h

21 lines
281 B
C
Raw Normal View History

2019-05-30 13:59:25 +02:00
#ifndef KANSHI_CONFIG_H
#define KANSHI_CONFIG_H
#include <wayland-util.h>
struct kanshi_profile_output {
struct wl_list link;
char *name;
};
struct kanshi_profile {
struct wl_list link;
struct wl_list outputs;
};
struct kanshi_config {
struct wl_list profiles;
};
#endif