swayfx/sway/config.h

43 lines
654 B
C
Raw Normal View History

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