swayfx/sway/commands/exec.c

20 lines
500 B
C
Raw Normal View History

2017-12-05 08:43:49 +11:00
#include <string.h>
#include "sway/commands.h"
2017-12-05 20:40:55 +11:00
#include "sway/config.h"
2017-12-05 08:43:49 +11:00
#include "log.h"
#include "stringop.h"
struct cmd_results *cmd_exec(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = cmd_exec_validate(argc, argv))) {
return error;
}
2017-12-05 08:43:49 +11:00
if (config->reloading) {
char *args = join_args(argv, argc);
sway_log(SWAY_DEBUG, "Ignoring 'exec %s' due to reload", args);
2017-12-05 08:43:49 +11:00
free(args);
return cmd_results_new(CMD_SUCCESS, NULL);
2017-12-05 20:40:55 +11:00
}
return cmd_exec_process(argc, argv);
2017-12-05 08:43:49 +11:00
}