aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/exit.c')
-rw-r--r--sway/commands/exit.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/sway/commands/exit.c b/sway/commands/exit.c
new file mode 100644
index 00000000..fe3212a4
--- /dev/null
+++ b/sway/commands/exit.c
@@ -0,0 +1,17 @@
1#include "commands.h"
2#include "container.h"
3
4void sway_terminate(int exit_code);
5
6struct cmd_results *cmd_exit(int argc, char **argv) {
7 struct cmd_results *error = NULL;
8 if (config->reading) return cmd_results_new(CMD_FAILURE, "exit", "Can't be used in config file.");
9 if ((error = checkarg(argc, "exit", EXPECTED_EQUAL_TO, 0))) {
10 return error;
11 }
12 // Close all views
13 close_views(&root_container);
14 sway_terminate(EXIT_SUCCESS);
15 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
16}
17