Add exec and exec_always commands

This commit is contained in:
emersion 2017-12-04 22:43:49 +01:00
parent 9fbcdc79b6
commit 514c819ff9
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
4 changed files with 105 additions and 0 deletions

16
sway/commands/exec.c Normal file
View file

@ -0,0 +1,16 @@
#include <string.h>
#include "sway/commands.h"
#include "log.h"
#include "stringop.h"
struct cmd_results *cmd_exec(int argc, char **argv) {
// TODO: config
/*if (!config->active) return cmd_results_new(CMD_DEFER, "exec", NULL);
if (config->reloading) {
char *args = join_args(argv, argc);
sway_log(L_DEBUG, "Ignoring 'exec %s' due to reload", args);
free(args);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}*/
return cmd_exec_always(argc, argv);
}