Added a README to each of the plugins, giving an overview on how they work

This commit is contained in:
Kirottu
2023-05-02 08:37:43 +03:00
parent 8a4c0ae397
commit 81b00ad52b
10 changed files with 130 additions and 16 deletions

18
plugins/shell/README.md Normal file
View File

@@ -0,0 +1,18 @@
# Shell
Run shell commands.
## Usage
Type in `<prefix><command>`, where `<prefix>` is the configured prefix (default in [Configuration](#Configuration)) and `<command>` is the command you want to run.
## Configuration
```ron
// <Anyrun config dir>/shell.ron
Config(
prefix: ":sh",
// Override the shell used to launch the command
shell: None,
)
```