diff options
Diffstat (limited to 'sway/commands/bar/tray_output.c')
-rw-r--r-- | sway/commands/bar/tray_output.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sway/commands/bar/tray_output.c b/sway/commands/bar/tray_output.c new file mode 100644 index 00000000..39b571d0 --- /dev/null +++ b/sway/commands/bar/tray_output.c @@ -0,0 +1,7 @@ +#include "commands.h" +#include "log.h" + +struct cmd_results *bar_cmd_tray_output(int argc, char **argv) { + sway_log(L_ERROR, "Warning: tray_output is not supported on wayland"); + return cmd_results_new(CMD_SUCCESS, NULL, NULL); +} |