diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-21 18:22:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 18:22:33 -0400 |
commit | d4e311a1adeee7cfd2a4404d716f3e0237ead607 (patch) | |
tree | 754519b46b6e4d278c735f10b80fde64873f5806 | |
parent | 1367ecc3093857f78fe3ddd685b57098fd612689 (diff) | |
parent | 844f4387c73fe438d60344a85a7a74fe8f8e7687 (diff) |
Merge pull request #310 from inclement/fix_rootston_default_config_2
Fixed default keybinding in config.c
-rw-r--r-- | rootston/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/config.c b/rootston/config.c index 71a4731b..c9c892f9 100644 --- a/rootston/config.c +++ b/rootston/config.c @@ -306,7 +306,7 @@ struct roots_config *parse_args(int argc, char *argv[]) { if (result == -1) { wlr_log(L_DEBUG, "No config file found. Using sensible defaults."); config->keyboard.meta_key = WLR_MODIFIER_LOGO; - add_binding_config(&config->bindings, "Logo+Shift+e", "exit"); + add_binding_config(&config->bindings, "Logo+Shift+E", "exit"); add_binding_config(&config->bindings, "Ctrl+q", "close"); add_binding_config(&config->bindings, "Alt+Tab", "next_window"); } else if (result == -2) { |