mirror of
https://github.com/swaywm/sway.git
synced 2025-11-15 06:59:50 -05:00
Add exec and exec_always commands
This commit is contained in:
parent
9fbcdc79b6
commit
514c819ff9
4 changed files with 105 additions and 0 deletions
16
sway/commands/exec.c
Normal file
16
sway/commands/exec.c
Normal 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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue