swayfx/sway/commands/bar/tray_output.c

9 lines
221 B
C
Raw Normal View History

2018-03-30 08:20:03 +11:00
#define _XOPEN_SOURCE 500
#include <string.h>
#include "sway/commands.h"
struct cmd_results *bar_cmd_tray_output(int argc, char **argv) {
// TODO TRAY
2018-03-30 13:05:16 +11:00
return cmd_results_new(CMD_INVALID, "tray_output", "TODO TRAY");
2018-03-30 08:20:03 +11:00
}