aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/exec.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-12-04 16:52:05 -0500
committerLibravatar GitHub <noreply@github.com>2017-12-04 16:52:05 -0500
commit83b4c0648d75932c693b8636242202ea728035da (patch)
treed2ddf512ebc46ea2c93c7a487cdf758c84e3d0bd /sway/commands/exec.c
parentMerge pull request #1494 from acrisci/feature/xwayland (diff)
parentAdd exec and exec_always commands (diff)
downloadsway-83b4c0648d75932c693b8636242202ea728035da.tar.gz
sway-83b4c0648d75932c693b8636242202ea728035da.tar.zst
sway-83b4c0648d75932c693b8636242202ea728035da.zip
Merge pull request #1497 from emersion/cmd-exec
Add exec and exec_always commands
Diffstat (limited to 'sway/commands/exec.c')
-rw-r--r--sway/commands/exec.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/sway/commands/exec.c b/sway/commands/exec.c
new file mode 100644
index 00000000..dd71500a
--- /dev/null
+++ b/sway/commands/exec.c
@@ -0,0 +1,16 @@
1#include <string.h>
2#include "sway/commands.h"
3#include "log.h"
4#include "stringop.h"
5
6struct cmd_results *cmd_exec(int argc, char **argv) {
7 // TODO: config
8 /*if (!config->active) return cmd_results_new(CMD_DEFER, "exec", NULL);
9 if (config->reloading) {
10 char *args = join_args(argv, argc);
11 sway_log(L_DEBUG, "Ignoring 'exec %s' due to reload", args);
12 free(args);
13 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
14 }*/
15 return cmd_exec_always(argc, argv);
16}