implement Button: movemouse, resizemouse

This commit is contained in:
Devin J. Pohly 2020-04-11 21:29:27 -05:00
parent bbe24fa8d4
commit edf90816b1
2 changed files with 52 additions and 0 deletions

View file

@ -12,3 +12,8 @@ static const Key keys[] = {
{ MODKEY, XKB_KEY_Escape, quit, {0} },
{ MODKEY, XKB_KEY_F1, focusnext, {0} },
};
static const Button buttons[] = {
{ MODKEY, BTN_LEFT, movemouse, {0} },
{ MODKEY, BTN_RIGHT, resizemouse, {0} },
};