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

@ -0,0 +1,9 @@
#include <stdlib.h>
#include "sway/commands.h"
#include "log.h"
struct cmd_results *bar_cmd_context_button(int argc, char **argv) {
const char *cmd_name = "context_button";
// TODO TRAY
return cmd_results_new(CMD_INVALID, cmd_name, "TODO TRAY");
}