1
0
Fork 0
mirror of https://github.com/NickHu/sway synced 2025-01-16 15:41:47 +01:00
sway-patched-tray-menu/sway/config.h

27 lines
385 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_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