sway/sway/commands/bar/tray_output.c

43 lines
1.1 KiB
C
Raw Normal View History

2018-12-09 15:10:41 +00:00
#define _POSIX_C_SOURCE 200809L
2018-03-29 21:20:03 +00:00
#include <string.h>
2018-12-09 15:10:41 +00:00
#include "config.h"
2018-03-29 21:20:03 +00:00
#include "sway/commands.h"
2018-12-09 15:10:41 +00:00
#include "sway/config.h"
#include "list.h"
#include "log.h"
2018-03-29 21:20:03 +00:00
struct cmd_results *bar_cmd_tray_output(int argc, char **argv) {
2018-12-09 15:10:41 +00:00
#if HAVE_TRAY
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "tray_output", EXPECTED_EQUAL_TO, 1))) {
return error;
}
if (!config->current_bar) {
return cmd_results_new(CMD_FAILURE, "No bar defined.");
2018-12-09 15:10:41 +00:00
}
list_t *outputs = config->current_bar->tray_outputs;
if (!outputs) {
config->current_bar->tray_outputs = outputs = create_list();
}
if (strcmp(argv[0], "none") == 0) {
wlr_log(WLR_DEBUG, "Hiding tray on bar: %s", config->current_bar->id);
for (int i = 0; i < outputs->length; ++i) {
free(outputs->items[i]);
}
outputs->length = 0;
} else {
wlr_log(WLR_DEBUG, "Showing tray on output '%s' for bar: %s", argv[0],
config->current_bar->id);
}
2018-12-11 16:27:39 +00:00
list_add(outputs, strdup(argv[0]));
2018-12-09 15:10:41 +00:00
return cmd_results_new(CMD_SUCCESS, NULL);
2018-12-09 15:10:41 +00:00
#else
return cmd_results_new(CMD_INVALID,
2018-12-09 15:10:41 +00:00
"Sway has been compiled without tray support");
#endif
2018-03-29 21:20:03 +00:00
}