diff options
Diffstat (limited to 'sway/commands/kill.c')
-rw-r--r-- | sway/commands/kill.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sway/commands/kill.c b/sway/commands/kill.c new file mode 100644 index 00000000..3804f0b0 --- /dev/null +++ b/sway/commands/kill.c @@ -0,0 +1,28 @@ +#include <wlr/util/log.h> +#include "log.h" +#include "sway/input/input-manager.h" +#include "sway/input/seat.h" +#include "sway/view.h" +#include "sway/commands.h" + +struct cmd_results *cmd_kill(int argc, char **argv) { + if (config->reading) { + return cmd_results_new(CMD_FAILURE, "kill", + "Command 'kill' cannot be used in the config file"); + } + if (!sway_assert(config->handler_context.current_container, + "cmd_kill called without container context")) { + return cmd_results_new(CMD_INVALID, NULL, + "cmd_kill called without container context " + "(this is a bug in sway)"); + } + // TODO close arbitrary containers without a view + struct sway_view *view = + config->handler_context.current_container->sway_view; + + if (view) { + view_close(view); + } + + return cmd_results_new(CMD_SUCCESS, NULL, NULL); +} |