wmenu

wmenu fork with my settings
git clone https://git.awy.one/wmenu.git
Log | Files | Refs | README | LICENSE

commit f07d05c7ae1d7e3dc87f206d5504077ec3f0ce80
parent 40a580ea67f98f316c20bce91ddb99dc257fc5cb
Author: awy <awy@awy.one>
Date:   Fri, 11 Apr 2025 01:11:07 +0300

colors

Diffstat:
Mmenu.c | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/menu.c b/menu.c @@ -27,12 +27,12 @@ struct menu *menu_create(menu_callback callback) { struct menu *menu = calloc(1, sizeof(struct menu)); menu->strncmp = strncmp; menu->font = "monospace 12"; - menu->normalbg = 0x282828ff; - menu->normalfg = 0xfbf1c7ff; - menu->promptbg = 0x83a598ff; - menu->promptfg = 0xfbf1c7ff; - menu->selectionbg = 0x83a598ff; - menu->selectionfg = 0xfbf1c7ff; + menu->normalbg = 0x2e3440ff; + menu->normalfg = 0xd8dee9ff; + menu->promptbg = 0xebcb8bff; + menu->promptfg = 0x2e3440ff; + menu->selectionbg = 0xebcb8bff; + menu->selectionfg = 0x2e3440ff; menu->callback = callback; menu->test_surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, 1, 1); menu->test_cairo = cairo_create(menu->test_surface);