diff options
Diffstat (limited to 'sway/commands/bar/context_button.c')
| -rw-r--r-- | sway/commands/bar/context_button.c | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/sway/commands/bar/context_button.c b/sway/commands/bar/context_button.c new file mode 100644 index 00000000..e6d17f10 --- /dev/null +++ b/sway/commands/bar/context_button.c @@ -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"); +} | 
