aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/kill.c
blob: f3fa52f149e7bc8df61e69b43dfd38b4d9c81e4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <wlr/util/log.h>
#include "log.h"
#include "sway/input/input-manager.h"
#include "sway/input/seat.h"
#include "sway/tree/view.h"
#include "sway/tree/container.h"
#include "sway/commands.h"

struct cmd_results *cmd_kill(int argc, char **argv) {
	struct sway_container *con =
		config->handler_context.current_container;

	container_close(con);

	return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}