aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/default_orientation.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-03-30 10:43:55 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-03-30 10:43:55 -0400
commit69eb021767d8cf57b08699c7e330fe8c52ca2764 (patch)
treec4160dfb51ece94ea4858fd86a097b881405f4b9 /sway/commands/default_orientation.c
parentFix crash when override redirect views close (diff)
downloadsway-69eb021767d8cf57b08699c7e330fe8c52ca2764.tar.gz
sway-69eb021767d8cf57b08699c7e330fe8c52ca2764.tar.zst
sway-69eb021767d8cf57b08699c7e330fe8c52ca2764.zip
Add default_orientation command
Diffstat (limited to 'sway/commands/default_orientation.c')
-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 @@
1#include <string.h>
2#include <strings.h>
3#include "sway/commands.h"
4
5struct cmd_results *cmd_default_orientation(int argc, char **argv) {
6 struct cmd_results *error = NULL;
7 if ((error = checkarg(argc, "default_orientation", EXPECTED_EQUAL_TO, 1))) {
8 return error;
9 }
10 if (strcasecmp(argv[0], "horizontal") == 0) {
11 config->default_orientation = L_HORIZ;
12 } else if (strcasecmp(argv[0], "vertical") == 0) {
13 config->default_orientation = L_VERT;
14 } else if (strcasecmp(argv[0], "auto") == 0) {
15 // Do nothing
16 } else {
17 return cmd_results_new(CMD_INVALID, "default_orientation",
18 "Expected 'orientation <horizontal|vertical|auto>'");
19 }
20 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
21}