aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/wm/config.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-04 13:40:18 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-04 13:40:18 -0700
commit36174e35185c34733a84055cd30dda5f7d947397 (patch)
tree4f9933ed5da5efd231862e44de1f12afb13e2476 /sys/cmd/wm/config.h
parent93e9672953d849288f27ff3d977cc1c1ff111da8 (diff)
feat(wm): mouse input
Diffstat (limited to 'sys/cmd/wm/config.h')
-rw-r--r--sys/cmd/wm/config.h4
1 files changed, 2 insertions, 2 deletions
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));