sway-patched-tray-menu-github/sway/commands/kill.c

24 lines
665 B
C
Raw Normal View History

#include <wlr/util/log.h>
2018-01-20 20:10:11 +01:00
#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->handler_context.current_container) {
wlr_log(L_ERROR, "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)");
2018-01-20 20:10:11 +01:00
}
// TODO close arbitrary containers without a view
struct sway_view *view =
config->handler_context.current_container->sway_view;
2018-01-20 20:10:11 +01:00
2018-01-21 15:09:53 +01:00
if (view) {
view_close(view);
2018-01-20 20:10:11 +01:00
}
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}