diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-11-22 15:33:17 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-11-22 15:33:17 -0500 |
commit | 903ba1c9b327e245b58c6e8d0277685e2fdcc745 (patch) | |
tree | 89a6487b1e3778a16252134f0dfad3218b6f9b7e /rootston | |
parent | b083b1708b208c9f9b5332ee291ffc0f7ef3b44d (diff) |
rootston: maximize command
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/keyboard.c | 5 | ||||
-rw-r--r-- | rootston/rootston.ini.example | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/rootston/keyboard.c b/rootston/keyboard.c index f3fc9a85..0b7afcb3 100644 --- a/rootston/keyboard.c +++ b/rootston/keyboard.c @@ -106,6 +106,11 @@ static void keyboard_binding_execute(struct roots_keyboard *keyboard, } else if (pid == 0) { execl("/bin/sh", "/bin/sh", "-c", shell_cmd, (void *)NULL); } + } else if (strcmp(command, "maximize") == 0) { + struct roots_view *focus = roots_seat_get_focus(seat); + if (focus != NULL) { + view_maximize(focus, !focus->maximized); + } } else { wlr_log(L_ERROR, "unknown binding command: %s", command); } diff --git a/rootston/rootston.ini.example b/rootston/rootston.ini.example index 17467100..a2fabb6b 100644 --- a/rootston/rootston.ini.example +++ b/rootston/rootston.ini.example @@ -44,4 +44,5 @@ meta-key = Logo [bindings] Logo+Shift+e = exit Logo+q = close +Logo+m = maximize Alt+Tab = next_window |