diff options
author | emersion <contact@emersion.fr> | 2018-03-30 11:49:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-30 11:49:45 -0400 |
commit | 1592543fd67c23467c81dfa51900bd798b9d8dfc (patch) | |
tree | 0f433cabde70591fbaf3e08352d2254222252804 /sway/commands | |
parent | b6b674fd7621dc09182bcc4b0bd6d214365a5b89 (diff) | |
parent | 69eb021767d8cf57b08699c7e330fe8c52ca2764 (diff) |
Merge pull request #1659 from swaywm/default-orientation
Add default_orientation command
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/default_orientation.c | 21 |
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); +} |