mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-28 22:23:42 +01:00
27 lines
385 B
C
27 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
|