2018-04-24 14:59:49 +10:00
|
|
|
#include <string.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "sway/criteria.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "stringop.h"
|
|
|
|
|
|
|
|
struct cmd_results *cmd_for_window(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "for_window", EXPECTED_AT_LEAST, 2))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2018-05-13 08:16:36 +10:00
|
|
|
char *err_str = NULL;
|
|
|
|
struct criteria *criteria = criteria_parse(argv[0], &err_str);
|
|
|
|
if (!criteria) {
|
2019-01-11 10:27:21 +11:00
|
|
|
error = cmd_results_new(CMD_INVALID, err_str);
|
2018-04-24 14:59:49 +10:00
|
|
|
free(err_str);
|
2018-05-13 08:16:36 +10:00
|
|
|
return error;
|
2018-04-24 14:59:49 +10:00
|
|
|
}
|
2018-05-13 08:16:36 +10:00
|
|
|
|
|
|
|
criteria->type = CT_COMMAND;
|
|
|
|
criteria->cmdlist = join_args(argv + 1, argc - 1);
|
|
|
|
|
|
|
|
list_add(config->criteria, criteria);
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "for_window: '%s' -> '%s' added", criteria->raw, criteria->cmdlist);
|
2018-05-13 08:16:36 +10:00
|
|
|
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-04-24 14:59:49 +10:00
|
|
|
}
|