aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/exit.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2016-09-02 19:47:37 -0400
committerGitHub <noreply@github.com>2016-09-02 19:47:37 -0400
commit29820ff826013b595e8c15d9e933767b0c965beb (patch)
treee5bae8ecc19c438091478ad878a8297252c72a81 /sway/commands/exit.c
parent4e6d7b125895955e3a84583c6d61f3eb2f8a4fe9 (diff)
parent65ace5dec5c24695501056376e227fb9b1f84a3a (diff)
Merge pull request #879 from zandrmartin/commands-refactor
refactor commands.c
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..f192f86a
--- /dev/null
+++ b/sway/commands/exit.c
@@ -0,0 +1,17 @@
+#include "sway/commands.h"
+#include "sway/container.h"
+
+void sway_terminate(int exit_code);
+
+struct cmd_results *cmd_exit(int argc, char **argv) {
+ struct cmd_results *error = NULL;
+ if (config->reading) return cmd_results_new(CMD_FAILURE, "exit", "Can't be used in config file.");
+ if ((error = checkarg(argc, "exit", EXPECTED_EQUAL_TO, 0))) {
+ return error;
+ }
+ // Close all views
+ close_views(&root_container);
+ sway_terminate(EXIT_SUCCESS);
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}
+