No description
Find a file
sewn ac25b07338 add wmenu_run script, similar to dmenu_run script
based off the works of sinanmohd, modified to be simpler and better
to read, with shellcheck.

Co-authored-by: sinanmohd <sinan@firemail.cc>
2024-03-17 07:49:14 -04:00
docs port dmenu password patch 2024-03-17 07:33:55 -04:00
protocols Drop xdg-output-unstable-v1 2022-12-02 12:00:28 -05:00
.gitignore Initial commit 2022-01-16 08:32:58 -05:00
LICENSE Update LICENSE 2024-02-27 08:50:29 -05:00
main.c Free memory associated with the menu on exit 2024-03-02 11:31:13 -05:00
menu.c port dmenu password patch 2024-03-17 07:33:55 -04:00
menu.h port dmenu password patch 2024-03-17 07:33:55 -04:00
meson.build add wmenu_run script, similar to dmenu_run script 2024-03-17 07:49:14 -04:00
pango.c Free memory associated with the menu on exit 2024-03-02 11:31:13 -05:00
pango.h Move menu and rendering logic into separate files 2024-02-27 11:23:12 -05:00
pool-buffer.c Move menu and rendering logic into separate files 2024-02-27 11:23:12 -05:00
pool-buffer.h Move menu and rendering logic into separate files 2024-02-27 11:23:12 -05:00
README.md readme: Tweak wording 2023-03-20 19:03:03 -04:00
render.c port dmenu password patch 2024-03-17 07:33:55 -04:00
render.h Move menu and rendering logic into separate files 2024-02-27 11:23:12 -05:00
wmenu_run add wmenu_run script, similar to dmenu_run script 2024-03-17 07:49:14 -04:00

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.