2019-01-11 16:12:24 +11:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
struct cmd_results *bar_cmd_status_edge_padding(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "status_edge_padding", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
char *end;
|
|
|
|
int padding = strtol(argv[0], &end, 10);
|
|
|
|
if (strlen(end) || padding < 0) {
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_INVALID,
|
2019-01-11 16:12:24 +11:00
|
|
|
"Padding must be a positive integer");
|
|
|
|
}
|
|
|
|
config->current_bar->status_edge_padding = padding;
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Status edge padding on bar %s: %d",
|
2019-01-11 16:12:24 +11:00
|
|
|
config->current_bar->id, config->current_bar->status_edge_padding);
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2019-01-11 16:12:24 +11:00
|
|
|
}
|