mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-26 20:10:35 -09:00
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.
Furthermore, as of commit [1], sway uses wmenu instead of dmenu-wayland
with the following commit message:
"""
Switch default config to wmenu-run
This removes the last dependency bit on dmenu. No need for
"swaymsg exec" anymore: wmenu-run handles the xdg-activation
shenanigans.
"""
As such, change sway/Config.in to select wmenu instead of dmenu-wayland when
a user selects swaybar.
[1] b44015578a
Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
21 lines
465 B
Makefile
21 lines
465 B
Makefile
################################################################################
|
|
#
|
|
# wmenu
|
|
#
|
|
################################################################################
|
|
|
|
WMENU_VERSION = 0.2.0
|
|
WMENU_SOURCE = $(WMENU_VERSION).tar.gz
|
|
WMENU_SITE = https://codeberg.org/adnano/wmenu/archive
|
|
WMENU_LICENSE = MIT
|
|
WMENU_LICENSE_FILES = LICENSE
|
|
WMENU_DEPENDENCIES = \
|
|
cairo \
|
|
pango \
|
|
wayland \
|
|
libxkbcommon \
|
|
wayland \
|
|
wayland-protocols
|
|
|
|
$(eval $(meson-package))
|