You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
730 B
30 lines
730 B
#include <string.h>
|
|
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "sway/tree/root.h"
|
|
#include "sway/tree/view.h"
|
|
#include "sway/output.h"
|
|
#include "list.h"
|
|
#include "log.h"
|
|
#include "stringop.h"
|
|
#include "util.h"
|
|
|
|
static void title_bar_update_iterator(struct sway_container *con, void *data) {
|
|
container_update_marks(con);
|
|
}
|
|
|
|
struct cmd_results *cmd_show_marks(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "show_marks", EXPECTED_AT_LEAST, 1))) {
|
|
return error;
|
|
}
|
|
|
|
config->show_marks = parse_boolean(argv[0], config->show_marks);
|
|
|
|
if (config->show_marks) {
|
|
root_for_each_container(title_bar_update_iterator, NULL);
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|