aboutsummaryrefslogblamecommitdiffstats
path: root/sway/commands/bar/status_padding.c
blob: 0c65e516e0bff64b7fc45d21315d07003976910b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                               
                                                   


                                                                      
                                                            
                                                                                      
                                                  
 
#include <stdlib.h>
#include <string.h>
#include "sway/commands.h"
#include "log.h"

struct cmd_results *bar_cmd_status_padding(int argc, char **argv) {
	struct cmd_results *error = NULL;
	if ((error = checkarg(argc, "status_padding", EXPECTED_EQUAL_TO, 1))) {
		return error;
	}
	char *end;
	int padding = strtol(argv[0], &end, 10);
	if (strlen(end) || padding < 0) {
		return cmd_results_new(CMD_INVALID,
				"Padding must be a positive integer");
	}
	config->current_bar->status_padding = padding;
	sway_log(SWAY_DEBUG, "Status padding on bar %s: %d",
			config->current_bar->id, config->current_bar->status_padding);
	return cmd_results_new(CMD_SUCCESS, NULL);
}