Go to file
Jan Staněk 2f45c191bc
Mark global wayland constant extern
Without `extern`, the changed lines are not declarations,
but "tentative definitions"
(according to GCC man page, option `-fcommon`).
When specified in a header file
that is included in more than one `.c` file,
these result in linking failure unless `-fcommon` is specified.

GCC 10 changed the default from `-fcommon` to `-fno-common`,
and as such the previous code no longer links properly.

With `extern`, these lines are considered declarations,
and the linking proceeds successfully.
2020-02-06 17:35:20 +01:00
.github Add donation option 2020-01-29 18:43:17 +09:00
client Prevent a deadloop in PATH handling 2019-06-05 15:59:16 +02:00
CMake Basic pango. 2014-11-23 21:20:03 +02:00
doxygen Update mainpage 2015-02-02 01:55:03 +02:00
lib Mark global wayland constant extern 2020-02-06 17:35:20 +01:00
man Correct documentation of execution process 2019-08-07 19:18:02 +02:00
test Remove the useless test, need actual tests. 2015-01-20 18:49:35 +02:00
.editorconfig Add .editorconfig 2018-04-08 11:05:52 -04:00
.gitignore gitignore: add missing generated files 2019-05-31 20:38:09 +00:00
CMakeLists.txt Bump version to 0.3.0 2019-12-20 09:45:10 +01:00
LICENSE-CLIENT Add license for client[s] 2014-03-18 20:12:00 +01:00
LICENSE-LIB Add license for library and binding[s] 2014-03-18 20:15:05 +01:00
README.md Document that bemenu is currently for use only with wlroots-based compositors 2020-01-29 16:43:43 -06:00

bemenu

Linux buildhck status Darwin buildhck status

Dynamic menu library and client program inspired by dmenu

Renderers

bemenu supports three different renderers:

  • ncurses
  • X11
  • Wayland; specifically, wlroots-based compositors

Enable/disable the renderers by appending these CMake options when executing cmake <dir>:

  • -DBEMENU_CURSES_RENDERER=[OFF|ON]
  • -DBEMENU_X11_RENDERER=[OFF|ON]
  • -DBEMENU_WAYLAND_RENDERER=[OFF|ON]

License