From dc4dc8d5bd375ff914524da2c6f9def77fba390d Mon Sep 17 00:00:00 2001 From: slonkazoid Date: Sun, 15 Dec 2024 17:07:43 +0300 Subject: [PATCH] update readme because vencord dumb --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fab1247..df0864a 100644 --- a/README.md +++ b/README.md @@ -4,12 +4,15 @@ 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/). to get the src/plugins folder, just clone this repository into `src/userplugins`. +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 -git clone https://git.slonk.ing/slonk/userplugins src/userplugins # clone this repository -pnpm build # build vencord -pnpm inject # ..and install +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 ```