blob: e6c77128c5fe6befd7e409e91e5e01b5fc3a3c6b (
plain)
1
2
3
4
5
6
7
|
#include <string.h>
#include "sway/commands.h"
struct cmd_results *bar_cmd_tray_output(int argc, char **argv) {
// TODO TRAY
return cmd_results_new(CMD_INVALID, "tray_output", "TODO TRAY");
}
|