1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-02-06 20:46:17 +01:00
sway-patched-tray-menu/sway/config.h
2015-08-04 21:30:40 -04:00

26 lines
385 B
C

#ifndef _SWAY_CONFIG_H
#define _SWAY_CONFIG_H
#include <stdint.h>
#include <wlc/wlc.h>
#include "list.h"
struct sway_binding {
list_t *keys;
struct wlc_modifiers modifiers;
char *command;
};
struct sway_mode {
char *name;
list_t *bindings;
};
struct sway_config {
list_t *symbols;
list_t *modes;
};
struct sway_config *read_config(FILE *file);
#endif