bdwmb/CONTRIBUTING.md
Ari Archer b79b778e57
update @ Wed 16 Feb 22:53:03 EET 2022
Signed-off-by: Ari Archer <truncateddinosour@gmail.com>
2022-02-16 22:53:03 +02:00

670 B

How to contribute your own modules?

  1. Do not make your modules harmful.
  2. Add documentation with a name of MODULE_{MODULE_NAME}.md in the /doc directory.
  3. Your documentation should look something like this:
# Module - {MODULE_NAME}

{WHAT THE MODULE DOES}

{CODE BLOCK START}
NAME: {MODULE_NAME}
DEPENDENCIES: {MODULE DEPENDENDENCIES}
TYPE: {MODULE TYPE (I.e bash script, shell script, python script, ...)}
{CODE BLOCK END}

## Setup

{HOW TO SET IT UP}

{EXTRA STUFF}
  1. Your module's main function has to be named b{MODULE_NAME}. for example if the module is named hi the main function should be bhi.
  2. Test your modules before committing