No description
![]() Compiling with --buildtype=release fails with message: ../main.c:935:17: error: argument 2 null where non-null expected [-Werror=nonnull] 935 | memcpy(state->text + state->cursor, s, n); GCC only produces this error with optimizations enabled. Looking at the build output I assume this happens because it tries to inline the function. |
||
---|---|---|
docs | ||
protocols | ||
.gitignore | ||
LICENSE | ||
main.c | ||
meson.build | ||
pango.c | ||
pango.h | ||
pool-buffer.c | ||
pool-buffer.h | ||
README.md |
wmenu
wmenu is an efficient dynamic menu for Sway and wlroots based Wayland compositors. It provides a Wayland-native dmenu replacement which maintains the look and feel of dmenu.
Installation
Dependencies:
- cairo
- pango
- wayland
- xkbcommon
- scdoc (optional)
$ meson build
$ ninja -C build
# ninja -C build install
Usage
See wmenu(1)
To use wmenu with Sway, you can add the following to your configuration file:
set $menu dmenu_path | wmenu | xargs swaymsg exec --
bindsym $mod+d exec $menu
Contributing
Send patches and questions to ~adnano/wmenu-devel.
Subscribe to release announcements on ~adnano/wmenu-announce.
Credits
This project started as a fork of dmenu-wl. However, most of the code was rewritten from scratch.