swayfx/sway/commands/kill.c

17 lines
405 B
C
Raw Normal View History

#include <wlr/util/log.h>
#include "log.h"
2018-01-21 06:10:11 +11:00
#include "sway/input/input-manager.h"
#include "sway/input/seat.h"
#include "sway/tree/view.h"
2018-03-31 15:44:17 +11:00
#include "sway/tree/container.h"
2018-01-21 06:10:11 +11:00
#include "sway/commands.h"
struct cmd_results *cmd_kill(int argc, char **argv) {
2018-03-31 15:44:17 +11:00
struct sway_container *con =
config->handler_context.current_container;
2018-04-04 09:23:59 +10:00
container_close(con);
2018-01-21 06:10:11 +11:00
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}