bindings: add minimize/maximize/fullscreen actions

These actions are by default not bound to anything.
This commit is contained in:
Daniel Eklöf 2020-03-12 09:34:09 +01:00
parent 1f904fc257
commit 65ff582358
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
5 changed files with 39 additions and 0 deletions

View file

@ -58,8 +58,14 @@ static const char *binding_action_map[] = {
[BIND_ACTION_FONT_SIZE_DOWN] = "font-decrease",
[BIND_ACTION_FONT_SIZE_RESET] = "font-reset",
[BIND_ACTION_SPAWN_TERMINAL] = "spawn-terminal",
[BIND_ACTION_MINIMIZE] = "minimize",
[BIND_ACTION_MAXIMIZE] = "maximize",
[BIND_ACTION_FULLSCREEN] = "fullscreen",
};
static_assert(ALEN(binding_action_map) == BIND_ACTION_COUNT,
"binding action map size mismatch");
static char *
get_shell(void)
{