aboutsummaryrefslogtreecommitdiff
path: root/sway/commands
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-03-30 19:04:06 -0400
committeremersion <contact@emersion.fr>2018-03-30 19:04:06 -0400
commit96656427656118f2e4d725359cc880270b0e51be (patch)
treee2596e9cfa113efa43f2a411176c31e6208a58b1 /sway/commands
parent6c9d67b1059409750de683aec3b8b9be2da987cc (diff)
parent1b88eaee6b14987c585fcf149cc26f665c584d77 (diff)
downloadsway-96656427656118f2e4d725359cc880270b0e51be.tar.xz
Merge branch 'wlroots' into client-cursors
Diffstat (limited to 'sway/commands')
-rw-r--r--sway/commands/default_orientation.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/sway/commands/default_orientation.c b/sway/commands/default_orientation.c
new file mode 100644
index 00000000..a5347ce2
--- /dev/null
+++ b/sway/commands/default_orientation.c
@@ -0,0 +1,21 @@
+#include <string.h>
+#include <strings.h>
+#include "sway/commands.h"
+
+struct cmd_results *cmd_default_orientation(int argc, char **argv) {
+ struct cmd_results *error = NULL;
+ if ((error = checkarg(argc, "default_orientation", EXPECTED_EQUAL_TO, 1))) {
+ return error;
+ }
+ if (strcasecmp(argv[0], "horizontal") == 0) {
+ config->default_orientation = L_HORIZ;
+ } else if (strcasecmp(argv[0], "vertical") == 0) {
+ config->default_orientation = L_VERT;
+ } else if (strcasecmp(argv[0], "auto") == 0) {
+ // Do nothing
+ } else {
+ return cmd_results_new(CMD_INVALID, "default_orientation",
+ "Expected 'orientation <horizontal|vertical|auto>'");
+ }
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}