sxhkd-rc

[fork] simple X hotkey daemon (but for the rc shell)
Log | Files | Refs | README | LICENSE

commit 35bcaa5df8db1562e39ed48632f37b790f892502
parent d51e796df206f152cabe0664b47be51b7d05dadc
Author: Bastien Dejean <nihilhill@gmail.com>
Date:   Wed, 19 Jun 2013 17:45:19 +0200

Compact debug notation for bindings

Diffstat:
Mhotkeys.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hotkeys.c b/hotkeys.c @@ -2721,7 +2721,7 @@ void process_hotkey(char *hotkey_string, char *command_string) strncpy(hotkey, hk_loop ? unfolded_hotkey : hotkey_string, sizeof(hotkey)); strncpy(command, cm_loop ? unfolded_command : command_string, sizeof(command)); - PRINTF(" %s\n %s\n", hotkey, command); + PRINTF("%s: %s\n", hotkey, command); chain_t *chain = make_chain(); if (parse_chain(hotkey, chain)) { hotkey_t *hk = make_hotkey(chain, command);