aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
authorChristoph Gysin <christoph.gysin@gmail.com>2015-11-29 10:28:52 +0200
committerChristoph Gysin <christoph.gysin@gmail.com>2015-11-29 14:51:56 +0200
commit88f372a22adab3c7a7b088d9d400066ed9c7b1af (patch)
treeb0acbd386b2f043a90cf947d1e2607a0ac53fd68 /sway/commands.c
parent01c5349e1a792c40725a23d95c537419ee7cdb1a (diff)
cmd_output: Cleanup cmd_output argument handling
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 42845f65..1106f095 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -716,20 +716,23 @@ static struct cmd_results *cmd_output(int argc, char **argv) {
if ((error = checkarg(argc, "output", EXPECTED_AT_LEAST, 1))) {
return error;
}
+ const char *name = argv[0];
+
struct output_config *output = calloc(1, sizeof(struct output_config));
output->x = output->y = output->width = output->height = -1;
- output->name = strdup(argv[0]);
+ output->name = strdup(name);
output->enabled = true;
// TODO: atoi doesn't handle invalid numbers
- if (strcasecmp(argv[1], "disable") == 0) {
- output->enabled = false;
- }
// TODO: Check missing params after each sub-command
int i;
for (i = 1; i < argc; ++i) {
- if (strcasecmp(argv[i], "resolution") == 0 || strcasecmp(argv[i], "res") == 0) {
+ const char *command = argv[i];
+
+ if (strcasecmp(command, "disable") == 0) {
+ output->enabled = false;
+ } else if (strcasecmp(command, "resolution") == 0 || strcasecmp(command, "res") == 0) {
char *res = argv[++i];
char *x = strchr(res, 'x');
int width = -1, height = -1;
@@ -747,7 +750,7 @@ static struct cmd_results *cmd_output(int argc, char **argv) {
}
output->width = width;
output->height = height;
- } else if (strcasecmp(argv[i], "position") == 0 || strcasecmp(argv[i], "pos") == 0) {
+ } else if (strcasecmp(command, "position") == 0 || strcasecmp(command, "pos") == 0) {
char *res = argv[++i];
char *c = strchr(res, ',');
int x = -1, y = -1;
@@ -765,7 +768,7 @@ static struct cmd_results *cmd_output(int argc, char **argv) {
}
output->x = x;
output->y = y;
- } else if (strcasecmp(argv[i], "bg") == 0 || strcasecmp(argv[i], "background") == 0) {
+ } else if (strcasecmp(command, "background") == 0 || strcasecmp(command, "bg") == 0) {
wordexp_t p;
if (++i >= argc) {
return cmd_results_new(CMD_INVALID, "output", "Missing background file.");