aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/kill.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-01-30 23:09:21 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-01-30 23:09:21 -0500
commitb28602aa7425cf435150e6008624429737e037d3 (patch)
treedafe7d23c48457299f33803832f6b89e09a915ce /sway/commands/kill.c
parentRemove include/sway/old/ (diff)
downloadsway-b28602aa7425cf435150e6008624429737e037d3.tar.gz
sway-b28602aa7425cf435150e6008624429737e037d3.tar.zst
sway-b28602aa7425cf435150e6008624429737e037d3.zip
Implement workspaces
Diffstat (limited to 'sway/commands/kill.c')
-rw-r--r--sway/commands/kill.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sway/commands/kill.c b/sway/commands/kill.c
index 3804f0b0..cebf7f3c 100644
--- a/sway/commands/kill.c
+++ b/sway/commands/kill.c
@@ -10,11 +10,10 @@ struct cmd_results *cmd_kill(int argc, char **argv) {
10 return cmd_results_new(CMD_FAILURE, "kill", 10 return cmd_results_new(CMD_FAILURE, "kill",
11 "Command 'kill' cannot be used in the config file"); 11 "Command 'kill' cannot be used in the config file");
12 } 12 }
13 if (!sway_assert(config->handler_context.current_container, 13 enum swayc_types type = config->handler_context.current_container->type;
14 "cmd_kill called without container context")) { 14 if (type != C_VIEW || type != C_CONTAINER) {
15 return cmd_results_new(CMD_INVALID, NULL, 15 return cmd_results_new(CMD_INVALID, NULL,
16 "cmd_kill called without container context " 16 "Can only kill views and containers with this command");
17 "(this is a bug in sway)");
18 } 17 }
19 // TODO close arbitrary containers without a view 18 // TODO close arbitrary containers without a view
20 struct sway_view *view = 19 struct sway_view *view =