2018-03-30 08:20:03 +11:00
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "log.h"
|
2018-11-18 03:11:28 +11:00
|
|
|
#include "util.h"
|
2018-03-30 08:20:03 +11:00
|
|
|
|
|
|
|
struct cmd_results *bar_cmd_strip_workspace_numbers(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
2018-03-30 13:05:16 +11:00
|
|
|
if ((error = checkarg(argc,
|
|
|
|
"strip_workspace_numbers", EXPECTED_EQUAL_TO, 1))) {
|
2018-03-30 08:20:03 +11:00
|
|
|
return error;
|
|
|
|
}
|
2019-05-17 08:56:58 +10:00
|
|
|
|
2018-11-18 03:11:28 +11:00
|
|
|
config->current_bar->strip_workspace_numbers =
|
|
|
|
parse_boolean(argv[0], config->current_bar->strip_workspace_numbers);
|
|
|
|
|
|
|
|
if (config->current_bar->strip_workspace_numbers) {
|
|
|
|
config->current_bar->strip_workspace_name = false;
|
|
|
|
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Stripping workspace numbers on bar: %s",
|
2018-03-30 13:05:16 +11:00
|
|
|
config->current_bar->id);
|
2018-11-18 03:11:28 +11:00
|
|
|
} else {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Enabling workspace numbers on bar: %s",
|
2018-03-30 13:05:16 +11:00
|
|
|
config->current_bar->id);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|
2018-11-18 03:11:28 +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
|
|
|
}
|