mirror of
https://github.com/swaywm/sway.git
synced 2025-11-15 06:59:50 -05:00
refactor commands.c
This commit is contained in:
parent
050704ab23
commit
b374c35758
77 changed files with 3567 additions and 3217 deletions
16
sway/commands/exec.c
Normal file
16
sway/commands/exec.c
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#include <string.h>
|
||||
#include "commands.h"
|
||||
#include "log.h"
|
||||
#include "stringop.h"
|
||||
|
||||
struct cmd_results *cmd_exec(int argc, char **argv) {
|
||||
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);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue