kranewl

A wlroots-based dynamic Wayland compositor, written in C++, configurable with Lua
git clone git://git.deurzen.net/kranewl
Log | Files | Refs | LICENSE

commit 47f9be1a377441f696e3754c0af232f23ef33efb
parent 4eff7980b85847981b403224e321b5e67aa5debb
Author: deurzen <max@deurzen.net>
Date:   Sun, 28 Aug 2022 18:41:48 +0200

removes keybindings for unsupported functionality

Diffstat:
Minclude/kranewl/input/key-bindings.hh | 48++++++++++++++++++++++++------------------------
1 file changed, 24 insertions(+), 24 deletions(-)

diff --git a/include/kranewl/input/key-bindings.hh b/include/kranewl/input/key-bindings.hh @@ -48,12 +48,12 @@ static const KeyBindings key_bindings = { .repeatable = false } }, -{ { XKB_KEY_x, MODKEY }, - { - .action = CALL(set_sticky_focus(Toggle::Reverse)), - .repeatable = false - } -}, +/* { { XKB_KEY_x, MODKEY }, */ +/* { */ +/* .action = CALL(set_sticky_focus(Toggle::Reverse)), */ +/* .repeatable = false */ +/* } */ +/* }, */ { { XKB_KEY_f, MODKEY | SECKEY | WLR_MODIFIER_CTRL }, { .action = CALL(set_contained_focus(Toggle::Reverse)), @@ -66,24 +66,24 @@ static const KeyBindings key_bindings = { .repeatable = false } }, -{ { XKB_KEY_y, MODKEY }, - { - .action = CALL(set_iconify_focus(Toggle::Reverse)), - .repeatable = false - } -}, -{ { XKB_KEY_u, MODKEY }, - { - .action = CALL(pop_deiconify()), - .repeatable = false - } -}, -{ { XKB_KEY_u, MODKEY | SECKEY }, - { - .action = CALL(deiconify_all()), - .repeatable = false - } -}, +/* { { XKB_KEY_y, MODKEY }, */ +/* { */ +/* .action = CALL(set_iconify_focus(Toggle::Reverse)), */ +/* .repeatable = false */ +/* } */ +/* }, */ +/* { { XKB_KEY_u, MODKEY }, */ +/* { */ +/* .action = CALL(pop_deiconify()), */ +/* .repeatable = false */ +/* } */ +/* }, */ +/* { { XKB_KEY_u, MODKEY | SECKEY }, */ +/* { */ +/* .action = CALL(deiconify_all()), */ +/* .repeatable = false */ +/* } */ +/* }, */ // view arrangers { { XKB_KEY_space, MODKEY | WLR_MODIFIER_CTRL },