2018-03-30 08:20:03 +11:00
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "log.h"
|
2018-11-10 23:55:06 +11:00
|
|
|
#include "util.h"
|
2018-03-30 08:20:03 +11:00
|
|
|
|
|
|
|
struct cmd_results *bar_cmd_workspace_buttons(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "workspace_buttons", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
2019-05-17 08:56:58 +10:00
|
|
|
config->current_bar->workspace_buttons =
|
2018-11-10 23:55:06 +11:00
|
|
|
parse_boolean(argv[0], config->current_bar->workspace_buttons);
|
|
|
|
if (config->current_bar->workspace_buttons) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Enabling workspace buttons on bar: %s",
|
2018-03-30 13:05:16 +11:00
|
|
|
config->current_bar->id);
|
2018-11-10 23:55:06 +11:00
|
|
|
} else {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Disabling workspace buttons on bar: %s",
|
2018-03-30 13:05:16 +11:00
|
|
|
config->current_bar->id);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|