From 36174e35185c34733a84055cd30dda5f7d947397 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Mon, 4 Oct 2021 13:40:18 -0700 Subject: feat(wm): mouse input --- sys/cmd/wm/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/cmd/wm/config.h') diff --git a/sys/cmd/wm/config.h b/sys/cmd/wm/config.h index d44b45f..752c6b7 100644 --- a/sys/cmd/wm/config.h +++ b/sys/cmd/wm/config.h @@ -59,9 +59,9 @@ CONFIG(Key*, endbinding, arrend(cfg·binding)); /* mouse buttons */ CONFIG(Button, button[], { - { MODKEY, BTN_LEFT, move_client, {.ui = CursorMove} }, + { MODKEY, BTN_LEFT, move_client, {0} }, { MODKEY, BTN_MIDDLE, float_client, {0} }, - { MODKEY, BTN_RIGHT, resize_client, {.ui = CursorResize} }, + { MODKEY, BTN_RIGHT, resize_client, {0} }, }); CONFIG(Button*, endbutton, arrend(cfg·button)); -- cgit v1.2.1