From b221ccbc214e6b9c2ad73f2e69dc4b999f0591c3 Mon Sep 17 00:00:00 2001 From: mintycube <90507714+mintycube@users.noreply.github.com> Date: Wed, 17 Jul 2024 08:01:32 +0500 Subject: [PATCH] Applied mouse hover patch --- README.md | 3 +++ patches.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d858c00..bad88f4 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,9 @@ Personal build of dmenu generated using [dmenu-flexipatch](https://github.com/ba - [mouse-support](https://tools.suckless.org/dmenu/patches/mouse-support/) - adds basic mouse support for dmenu + - [motion-support](https://tools.suckless.org/dmenu/patches/mouse-support/) + - Expands the above to support mouse hovering. + - [password](https://tools.suckless.org/dmenu/patches/password/) - with this patch dmenu will not directly display the keyboard input, but instead replace it with dots diff --git a/patches.h b/patches.h index b47fdde..98018b7 100644 --- a/patches.h +++ b/patches.h @@ -143,7 +143,7 @@ /* Expands the above to support mouse hovering. * https://tools.suckless.org/dmenu/patches/mouse-support/ */ -#define MOTION_SUPPORT_PATCH 0 +#define MOTION_SUPPORT_PATCH 1 /* Without this patch when you press Ctrl+Enter dmenu just outputs current item and it is not * possible to undo that.