userplugins/README.md

20 lines
665 B
Markdown
Raw Permalink Normal View History

2024-12-15 16:51:52 +03:00
# userplugins
a collection of userplugins i made for vencord
## how to use
2024-12-15 17:07:43 +03:00
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:
2024-12-15 16:51:52 +03:00
```sh
git clone https://github.com/Vendicated/Vencord # clone vencord
2024-12-15 17:07:43 +03:00
git clone https://git.slonk.ing/slonk/userplugins # clone this repository
2024-12-15 16:51:52 +03:00
cd Vencord
2024-12-15 17:07:43 +03:00
mkdir -p src/userplugins # create src/userplugins if it doesn't exist
cp -r ../userplugins/*/ src/userplugins # copy all plugins
2024-12-15 19:48:18 +03:00
pnpm i # install dependencies
2024-12-15 17:07:43 +03:00
pnpm build && pnpm inject # build and install vencord
2024-12-15 16:51:52 +03:00
```