mirror of
https://github.com/Cloudef/bemenu
synced 2024-11-23 17:32:11 +01:00
Dynamic menu library and client program inspired by dmenu
client | ||
doxygen | ||
lib | ||
test | ||
.gitignore | ||
CMakeLists.txt | ||
LICENSE-CLIENT | ||
LICENSE-LIB | ||
README.md |
bemenu
Dynamic menu library and client program inspired by dmenu
License
- GNU GPLv3 (or any later version) for client program[s] and other sources except library and bindings
- GNU LGPLv3 (or any later version) for library and bindings
Project Guidelines
- Coding style
- Linux kernel coding style
for C sources with following exceptions:
- spaces not tabs
- indentation size is 4 characters (spaces)
- function and variable names are camelCase except for global constants
- Standard style for Python
- Linux kernel coding style
for C sources with following exceptions:
- Build system - CMake
- API documentation - Doxygen (JavaDoc style comments)
- Branches
- master - stable releases (permanent)
- develop - development (permanent), merge back to master
- dev/topic - topic related development (temporary), branch off from develop and merge to develop
- hotfix/issue - stable release bugfixes (temporary), branch off from master and merge to master and develop