diff options
author | emersion <contact@emersion.fr> | 2018-01-07 00:37:36 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-01-07 00:37:36 +0100 |
commit | e56b82e89639d3699cee8ada8eac7e8507e8c864 (patch) | |
tree | 4d1852e59fea0130fc3ec00038b7a0f9d2b24b98 | |
parent | 77fc0505e6afed714fc4e96358fc04dc1c1be54b (diff) |
rootston: add toggle_outputs command
-rw-r--r-- | rootston/keyboard.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/rootston/keyboard.c b/rootston/keyboard.c index 7b281308..14199afd 100644 --- a/rootston/keyboard.c +++ b/rootston/keyboard.c @@ -2,6 +2,7 @@ #include <stdint.h> #include <stdlib.h> #include <unistd.h> +#include <stdbool.h> #include <wayland-server.h> #include <wlr/types/wlr_input_device.h> #include <wlr/types/wlr_pointer.h> @@ -85,6 +86,8 @@ static void pressed_keysyms_update(xkb_keysym_t *pressed_keysyms, static const char *exec_prefix = "exec "; +static bool outputs_enabled = true; + static void keyboard_binding_execute(struct roots_keyboard *keyboard, const char *command) { struct roots_seat *seat = keyboard->seat; @@ -119,6 +122,12 @@ static void keyboard_binding_execute(struct roots_keyboard *keyboard, } } else if (strcmp(command, "nop") == 0) { wlr_log(L_DEBUG, "nop command"); + } else if (strcmp(command, "toggle_outputs") == 0) { + outputs_enabled = !outputs_enabled; + struct roots_output *output; + wl_list_for_each(output, &keyboard->input->server->desktop->outputs, link) { + wlr_output_enable(output->wlr_output, outputs_enabled); + } } else { wlr_log(L_ERROR, "unknown binding command: %s", command); } |