From ebf27f20275443573e1c09d664e6d34f6461f9dc Mon Sep 17 00:00:00 2001 From: Tony Crisci Date: Tue, 26 Dec 2017 08:41:58 -0500 Subject: [PATCH] add nop command --- rootston/keyboard.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rootston/keyboard.c b/rootston/keyboard.c index 16071c0c..7b281308 100644 --- a/rootston/keyboard.c +++ b/rootston/keyboard.c @@ -117,6 +117,8 @@ static void keyboard_binding_execute(struct roots_keyboard *keyboard, if (focus != NULL) { view_maximize(focus, !focus->maximized); } + } else if (strcmp(command, "nop") == 0) { + wlr_log(L_DEBUG, "nop command"); } else { wlr_log(L_ERROR, "unknown binding command: %s", command); }