userplugins/README.md

18 lines
635 B
Markdown

# userplugins
a collection of userplugins i made for vencord
## how to use
follow [vencord's guide on installing custom plugins](https://docs.vencord.dev/installing/custom-plugins/).
create the the `src/userplugins` folder, and copy plugins you want from
this repository in it, like this:
```sh
git clone https://github.com/Vendicated/Vencord # clone vencord
git clone https://git.slonk.ing/slonk/userplugins # clone this repository
cd Vencord
mkdir -p src/userplugins # create src/userplugins if it doesn't exist
cp -r ../userplugins/*/ src/userplugins # copy all plugins
pnpm build && pnpm inject # build and install vencord
```