aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/kill.c
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-01-22 01:16:23 +0100
committerGitHub <noreply@github.com>2018-01-22 01:16:23 +0100
commit0c58673c6a108ba241419a0f1d5fecd47f22370e (patch)
treec3e19af6dd70f04fc5c617e932b4afcc7a1b41d9 /sway/commands/kill.c
parenta6bc46eea9d7dec6a2b93f85bac2e3737e0c6725 (diff)
parentbeb3805cf0300bc2640290233aa763d757c12466 (diff)
Merge pull request #1574 from acrisci/config-refactor
Command criteria
Diffstat (limited to 'sway/commands/kill.c')
-rw-r--r--sway/commands/kill.c28
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);
+}