Implement mode --pango_markup

This commit is contained in:
Brian Ashworth 2018-07-05 18:12:14 -04:00
parent 84109431f7
commit 78c08fb0a2
6 changed files with 27 additions and 8 deletions

View file

@ -50,6 +50,7 @@ struct sway_mode {
char *name;
list_t *keysym_bindings;
list_t *keycode_bindings;
bool pango;
};
struct input_config_mapped_from_region {

View file

@ -15,6 +15,6 @@ void ipc_event_workspace(struct sway_container *old,
struct sway_container *new, const char *change);
void ipc_event_window(struct sway_container *window, const char *change);
void ipc_event_barconfig_update(struct bar_config *bar);
void ipc_event_mode(const char *mode);
void ipc_event_mode(const char *mode, bool pango);
#endif