wmenu/README.md

44 lines
873 B
Markdown
Raw Normal View History

2023-03-20 18:44:48 -04:00
# wmenu
2022-01-16 08:32:58 -05:00
2023-03-20 18:44:48 -04:00
wmenu is an efficient dynamic menu for Sway and wlroots based Wayland
2023-03-20 19:03:03 -04:00
compositors. It provides a Wayland-native dmenu replacement which maintains the
look and feel of dmenu.
2022-01-16 08:32:58 -05:00
## Installation
Dependencies:
- cairo
- pango
- wayland
- xkbcommon
- scdoc (optional)
```
$ meson build
$ ninja -C build
# ninja -C build install
```
## Usage
See wmenu(1)
2022-04-17 13:53:11 -04:00
To use wmenu with Sway, you can add the following to your configuration file:
```
2024-04-07 08:51:57 -04:00
set $menu wmenu_run
2022-04-17 13:53:11 -04:00
bindsym $mod+d exec $menu
```
2022-04-15 10:50:45 +02:00
## Contributing
Send patches and questions to [~adnano/wmenu-devel](https://lists.sr.ht/~adnano/wmenu-devel).
Subscribe to release announcements on [~adnano/wmenu-announce](https://lists.sr.ht/~adnano/wmenu-announce).
2022-01-16 08:32:58 -05:00
## Credits
This project started as a fork of [dmenu-wl](https://github.com/nyyManni/dmenu-wayland).
However, most of the code was rewritten from scratch.