From 8f5f33b271e4eb6f22e19c980693375a628842b8 Mon Sep 17 00:00:00 2001 From: Calvin Date: Tue, 11 Feb 2014 17:08:13 -0500 Subject: no more & --- example_rc | 6 +++--- hotkey.c | 7 +++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/example_rc b/example_rc index d60c895..2ea9cdf 100644 --- a/example_rc +++ b/example_rc @@ -1,3 +1,3 @@ -control+p dmenu_run & -control+mod1+g xterm -e mocp & -mod1+g xterm & +control+p dmenu_run +control+mod1+g xterm -e mocp +mod1+g xterm diff --git a/hotkey.c b/hotkey.c index d00062d..e9ee615 100644 --- a/hotkey.c +++ b/hotkey.c @@ -22,8 +22,9 @@ struct Key * parse_key(char *shortcut, char *command) { fprintf(stderr, "could not allocate keys\n"); exit(EXIT_FAILURE); } - key->command = command; - key->mod = 0; + key->command = strndup(command, strlen(command) + 2); + key->command[strlen(command)] = ' '; + key->command[strlen(command) + 1] = '&'; size_t i = 0; @@ -113,6 +114,8 @@ struct Key **load_hotkeys(FILE *fh, size_t *key_len) { res = sscanf(line, "%ms %m[^\n]+", &shortcut, &command); if(res == 2) { key = parse_key(shortcut, command); + if(key == NULL) + error = 1; } else { error = 1; -- cgit v1.2.1