aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/kill.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/sway/commands/kill.c b/sway/commands/kill.c
index 811c3e6b..f3fa52f1 100644
--- a/sway/commands/kill.c
+++ b/sway/commands/kill.c
@@ -10,19 +10,7 @@ struct cmd_results *cmd_kill(int argc, char **argv) {
struct sway_container *con =
config->handler_context.current_container;
- switch (con->type) {
- case C_ROOT:
- case C_OUTPUT:
- case C_WORKSPACE:
- case C_TYPES:
- return cmd_results_new(CMD_INVALID, NULL,
- "Can only kill views and containers with this command");
- break;
- case C_CONTAINER:
- case C_VIEW:
- container_close(con);
- break;
- }
+ container_close(con);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}