You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
734 B
33 lines
734 B
#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;
|
|
|
|
switch (con->type) {
|
|
case C_ROOT:
|
|
case C_OUTPUT:
|
|
case C_WORKSPACE:
|
|
return cmd_results_new(CMD_INVALID, NULL,
|
|
"Can only kill views and containers with this command");
|
|
break;
|
|
case C_CONTAINER:
|
|
con = container_destroy(con);
|
|
arrange_windows(con, -1, -1);
|
|
break;
|
|
case C_VIEW:
|
|
view_close(con->sway_view);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
}
|