2018-08-03 11:37:29 +10:00
|
|
|
#include <string.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "stringop.h"
|
|
|
|
|
|
|
|
struct cmd_results *cmd_swaynag_command(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "swaynag_command", EXPECTED_AT_LEAST, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2018-10-09 00:56:34 +11:00
|
|
|
free(config->swaynag_command);
|
|
|
|
config->swaynag_command = NULL;
|
|
|
|
|
|
|
|
char *new_command = join_args(argv, argc);
|
|
|
|
if (strcmp(new_command, "-") != 0) {
|
2018-10-23 12:19:22 +11:00
|
|
|
config->swaynag_command = new_command;
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Using custom swaynag command: %s",
|
2018-10-09 00:56:34 +11:00
|
|
|
config->swaynag_command);
|
|
|
|
} else {
|
|
|
|
free(new_command);
|
2018-08-03 11:37:29 +10:00
|
|
|
}
|
|
|
|
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-08-03 11:37:29 +10:00
|
|
|
}
|