mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Fixed default keybinding in config.c
This commit is contained in:
parent
1367ecc309
commit
844f4387c7
1 changed files with 1 additions and 1 deletions
|
@ -306,7 +306,7 @@ struct roots_config *parse_args(int argc, char *argv[]) {
|
||||||
if (result == -1) {
|
if (result == -1) {
|
||||||
wlr_log(L_DEBUG, "No config file found. Using sensible defaults.");
|
wlr_log(L_DEBUG, "No config file found. Using sensible defaults.");
|
||||||
config->keyboard.meta_key = WLR_MODIFIER_LOGO;
|
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, "Ctrl+q", "close");
|
||||||
add_binding_config(&config->bindings, "Alt+Tab", "next_window");
|
add_binding_config(&config->bindings, "Alt+Tab", "next_window");
|
||||||
} else if (result == -2) {
|
} else if (result == -2) {
|
||||||
|
|
Loading…
Reference in a new issue