aboutsummaryrefslogtreecommitdiff
path: root/sway/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c31
1 files changed, 29 insertions, 2 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 14192c44..cb24f796 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -1,3 +1,4 @@
+#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
@@ -5,16 +6,36 @@
#include "commands.h"
int cmd_set(struct sway_config *config, int argc, char **argv) {
+ if (argc != 2) {
+ fprintf(stderr, "Invalid set command (expected 2 arguments, got %d)\n", argc);
+ return 1;
+ }
+ struct sway_variable *var = malloc(sizeof(struct sway_variable));
+ var->name = malloc(strlen(argv[0]) + 1);
+ strcpy(var->name, argv[0]);
+ var->value = malloc(strlen(argv[1]) + 1);
+ strcpy(var->value, argv[1]);
+ list_add(config->symbols, var);
+ return 0;
+}
+
+int cmd_bindsym(struct sway_config *config, int argc, char **argv) {
+ if (argc != 2) {
+ fprintf(stderr, "Invalid bindsym command (expected 2 arguments, got %d)\n", argc);
+ return 1;
+ }
+ // TODO: parse out keybindings
return 0;
}
/* Keep alphabetized */
struct cmd_handler handlers[] = {
+ { "bindsym", cmd_bindsym }
{ "set", cmd_set }
};
char **split_directive(char *line, int *argc) {
- const char *delimiters = ",";
+ const char *delimiters = " ";
*argc = 0;
while (isspace(*line) && *line) ++line;
@@ -94,5 +115,11 @@ int handle_command(struct sway_config *config, char *exec) {
}
int argc;
char **argv = split_directive(exec + strlen(handler->command), &argc);
- return handler->handle(config, argc, argv);
+ int ret = handler->handle(config, argc, argv);
+ int i;
+ for (i = 0; i < argc; ++i) {
+ free(argv[i]);
+ }
+ free(argv);
+ return ret;
}