diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-12-27 05:49:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-27 05:49:34 -0500 |
commit | cbd76cb46f60fe61ec35f45dbcb1dfd580ba1fdf (patch) | |
tree | 233339074d25df6a2f3dddb0714f7295387cc32d /rootston | |
parent | 6c2242e66be2dddb38559717e1a9054a55b8e6d1 (diff) | |
parent | ebf27f20275443573e1c09d664e6d34f6461f9dc (diff) |
Merge pull request #521 from acrisci/nop-command
add nop command
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/keyboard.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); } |