2018-11-26 14:08:58 +11:00
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "sway/config.h"
|
|
|
|
#include "sway/output.h"
|
|
|
|
#include "sway/tree/container.h"
|
|
|
|
#include "sway/tree/root.h"
|
|
|
|
|
|
|
|
struct cmd_results *cmd_title_align(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "title_align", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(argv[0], "left") == 0) {
|
|
|
|
config->title_align = ALIGN_LEFT;
|
|
|
|
} else if (strcmp(argv[0], "center") == 0) {
|
|
|
|
config->title_align = ALIGN_CENTER;
|
|
|
|
} else if (strcmp(argv[0], "right") == 0) {
|
|
|
|
config->title_align = ALIGN_RIGHT;
|
|
|
|
} else {
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_INVALID,
|
2018-11-26 14:08:58 +11:00
|
|
|
"Expected 'title_align left|center|right'");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < root->outputs->length; ++i) {
|
|
|
|
struct sway_output *output = root->outputs->items[i];
|
|
|
|
output_damage_whole(output);
|
|
|
|
}
|
|
|
|
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-11-26 14:08:58 +11:00
|
|
|
}
|