Organize your DMs with folders
- Install a mod. I recommend to download BetterDiscord, but you can compile for Powercord and GooseMod
- Currently, DMFolders and any Ittai plugin breaks when you have multiple mods installed
- Download it
- For BetterDiscord: go to here, hit CTRL+S, and then rename it to
DMFolders.plugin.js
- For Powercord: run the following command inside your plugins folder
git clone --branch release /~https://github.com/abUwUser/DMFolders.git
- For GooseMod: no idea lol
- For BetterDiscord: go to here, hit CTRL+S, and then rename it to
- Install node.js (for compiling) and git (for downloading this repo, not required but strongly recommended)
- Clone this repository (
git clone /~https://github.com/abUwUser/DMFolders.git
)- Choose a folder in where you want to clone everything. If you don't know where to put all of it, just clone on Documents and make a folder in there (
cd Documents
on Windows and thenmkdir CompilingDMFolders
)
- Choose a folder in where you want to clone everything. If you don't know where to put all of it, just clone on Documents and make a folder in there (
- Since this plugin uses the latest pushes to AA's fork of Ittai, you will need to install it
- Clone it (
git clone https://git.catvibers.me/Ittai/ittai
) and go to the cloned directory (cd ittai
) - Link the builder by going to the builder directory (
cd builder
) and installing its dependencies (npm i
) (maybe consider doing a link (npm link
)) - Go back one folder (
cd ..
) and then go to the corecd core
- Install the core dependencies (
npm i
) and then link it (npm link
) - Go back two directories (run
cd ..
twice)
- Clone it (
- Go to the DMFolders folder (
cd DMFolders
) - Link Ittai with DMFolders (
npm link ittai
)- This is a crucial part because due to DMFolders using the latest pushes to Ittai and not Ittai's npm repository, the Ittai from
npm
wont be able to build some of the code in there
- This is a crucial part because due to DMFolders using the latest pushes to Ittai and not Ittai's npm repository, the Ittai from
- Install the rest of the dependecies (
npm i
) - Build it (
ittai --betterdiscord="path/to/betterdiscord/plugins"
)- If you're Powercord, run
ittai --powercordv2
for Powercord and then copy the.compiled
folder (not its contents, just the entire folder) to Powercord's plugin folder, and then rename with what name you prefer - Currently, there isn't any good way to install for GooseMod due to its weird installing process, but we will push to the official GooseMod plugin repo in the future (as soon as Ittai fixes a bug with GooseMod plugins)
- If you're Powercord, run