1
0
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
Go to file
2014-04-14 19:00:15 +03:00
client Handle -l option by ignoring it 2014-04-13 01:26:53 +03:00
doxygen Fix typo in Mainpage.dox 2014-04-12 23:05:12 +02:00
lib Better input scroll logic. 2014-04-14 19:00:15 +03:00
test Unfortunately we can't test curses on cronjob 2014-04-13 03:15:18 +03:00
.gitignore Ignore backup files 2014-03-18 21:20:26 +01:00
CMakeLists.txt Nicer doxygen output 2014-04-10 15:48:55 +03: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 Update README.md 2014-04-10 11:00:26 +03:00

bemenu

Dynamic menu library and client program inspired by dmenu

License

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
  • 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