2018-12-10 02:10:41 +11:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2018-03-30 08:20:03 +11:00
|
|
|
#include <string.h>
|
2018-12-10 02:10:41 +11:00
|
|
|
#include "config.h"
|
2018-03-30 08:20:03 +11:00
|
|
|
#include "sway/commands.h"
|
2018-12-10 02:10:41 +11:00
|
|
|
#include "sway/config.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "log.h"
|
2018-03-30 08:20:03 +11:00
|
|
|
|
|
|
|
struct cmd_results *bar_cmd_tray_output(int argc, char **argv) {
|
2018-12-10 02:10:41 +11: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) {
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_FAILURE, "No bar defined.");
|
2018-12-10 02:10:41 +11: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) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Hiding tray on bar: %s", config->current_bar->id);
|
2018-12-10 02:10:41 +11:00
|
|
|
for (int i = 0; i < outputs->length; ++i) {
|
|
|
|
free(outputs->items[i]);
|
|
|
|
}
|
|
|
|
outputs->length = 0;
|
|
|
|
} else {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Showing tray on output '%s' for bar: %s", argv[0],
|
2018-12-10 02:10:41 +11:00
|
|
|
config->current_bar->id);
|
|
|
|
}
|
2018-12-12 03:27:39 +11:00
|
|
|
list_add(outputs, strdup(argv[0]));
|
2018-12-10 02:10:41 +11:00
|
|
|
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-12-10 02:10:41 +11:00
|
|
|
#else
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_INVALID,
|
2018-12-10 02:10:41 +11:00
|
|
|
"Sway has been compiled without tray support");
|
|
|
|
#endif
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|