swayfx/sway/commands/include.c
William McKinnon f47f35c52c
rebase: Sway 1.11 (#431)
Co-authored-by: Erik Reider <35975961+ErikReider@users.noreply.github.com>
2025-06-24 00:00:27 -04:00

14 lines
444 B
C

#include "sway/commands.h"
#include "sway/config.h"
struct cmd_results *cmd_include(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "include", EXPECTED_AT_LEAST, 1))) {
return error;
}
char *files = join_args(argv, argc);
// We don't care if the included config(s) fails to load.
load_include_configs(files, config, &config->swaynag_config_errors);
return cmd_results_new(CMD_SUCCESS, NULL);
}