Add bar configuration commands

This commit is contained in:
Drew DeVault 2018-03-29 17:20:03 -04:00
parent 6836074fed
commit bf7a4cd0eb
31 changed files with 1051 additions and 50 deletions

View file

@ -74,6 +74,9 @@ void free_cmd_results(struct cmd_results *results);
*/
const char *cmd_results_to_json(struct cmd_results *results);
struct cmd_results *add_color(const char *name,
char *buffer, const char *color);
typedef struct cmd_results *sway_cmd(int argc, char **argv);
sway_cmd cmd_assign;

View file

@ -12,5 +12,6 @@ struct sockaddr_un *ipc_user_sockaddr(void);
void ipc_event_workspace(swayc_t *old, swayc_t *new, const char *change);
void ipc_event_window(swayc_t *window, const char *change);
void ipc_event_barconfig_update(struct bar_config *bar);
#endif