2015-08-05 11:30:40 +10:00
|
|
|
#ifndef _SWAY_CONFIG_H
|
|
|
|
#define _SWAY_CONFIG_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <wlc/wlc.h>
|
|
|
|
#include "list.h"
|
|
|
|
|
2015-08-06 12:10:56 +10:00
|
|
|
struct sway_variable {
|
|
|
|
char *name;
|
|
|
|
char *value;
|
|
|
|
};
|
|
|
|
|
2015-08-05 11:30:40 +10:00
|
|
|
struct sway_binding {
|
|
|
|
list_t *keys;
|
2015-08-06 12:40:38 +10:00
|
|
|
uint32_t modifiers;
|
2015-08-05 11:30:40 +10:00
|
|
|
char *command;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sway_mode {
|
|
|
|
char *name;
|
|
|
|
list_t *bindings;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sway_config {
|
|
|
|
list_t *symbols;
|
|
|
|
list_t *modes;
|
2015-08-06 12:10:56 +10:00
|
|
|
struct sway_mode *current_mode;
|
2015-08-05 11:30:40 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
struct sway_config *read_config(FILE *file);
|
2015-08-06 12:40:38 +10:00
|
|
|
char *do_var_replacement(struct sway_config *config, char *str);
|
2015-08-05 11:30:40 +10:00
|
|
|
|
2015-08-09 09:24:18 +10:00
|
|
|
extern struct sway_config *config;
|
|
|
|
|
2015-08-05 11:30:40 +10:00
|
|
|
#endif
|