dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit a42613db9d9f6debfa4fb2363d75af9457d238ed
parent 44ef698d6ef48a41b0df7c4c47d8b880efdbdf33
Author: Devin J. Pohly <djpohly@gmail.com>
Date:   Thu, 24 Dec 2020 14:28:04 -0600

Merge pull request #66 from richardipsum/master

fix undeclared WLR_KEY_PRESSED
Diffstat:
Mdwl.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dwl.c b/dwl.c @@ -856,7 +856,7 @@ keypress(struct wl_listener *listener, void *data) int handled = 0; uint32_t mods = wlr_keyboard_get_modifiers(kb->device->keyboard); /* On _press_, attempt to process a compositor keybinding. */ - if (event->state == WLR_KEY_PRESSED) + if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) for (i = 0; i < nsyms; i++) handled = keybinding(mods, syms[i]) || handled;