9 lines
218 B
C
9 lines
218 B
C
#include <stdlib.h>
|
|
#include "sway/commands.h"
|
|
#include "log.h"
|
|
|
|
struct cmd_results *bar_cmd_context_button(int argc, char **argv) {
|
|
// TODO TRAY
|
|
return cmd_results_new(CMD_INVALID, "context_button", "TODO TRAY");
|
|
}
|