Personal custom Discord Client forked by Vesktop
Find a file
Vendicated e265e70fb9
fixes
2023-04-09 03:06:19 +02:00
.github/workflows i hate workflows 2023-04-06 05:14:28 +02:00
build Add Electron builder jazz 2023-04-03 05:44:42 +02:00
scripts fixes 2023-04-09 03:06:19 +02:00
src fixes 2023-04-09 03:06:19 +02:00
static Add about page & setting to open links with electron 2023-04-05 17:55:49 +02:00
.gitignore Initial commit 2023-03-30 01:02:30 +02:00
.npmrc Add Electron builder jazz 2023-04-03 05:44:42 +02:00
.prettierrc.yaml Add Electron builder jazz 2023-04-03 05:44:42 +02:00
LICENSE Initial commit 2023-03-30 01:02:30 +02:00
package.json fixes 2023-04-09 03:06:19 +02:00
pnpm-lock.yaml Add ability to load Vencord from custom location (dev install) 2023-04-09 02:26:31 +02:00
README.md Initial Settings UI work 2023-04-09 00:49:47 +02:00
tsconfig.json forgor to add tsconfig 2023-04-05 16:56:33 +02:00

Vencord Desktop

A standalone Electron app that loads Discord & Vencord

Vencord Desktop is currently in very early alpha. Bug reports, feature requests & contributions are highly appreciated!!

Installing

Windows

Download and run Vencord-Desktop-Setup-VERSION.exe from releases

Mac

Download and run Vencord-Desktop-VERSION.dmg from releases

Linux

Ubuntu/Debian based

Download Vencord-Desktop-VERSION.deb from releases

Fedora/RHEL based

Download Vencord-Desktop-VERSION.rpm from releases

Other

Either download Vencord-Desktop-VERSION.AppImage and just run it directly or grab Vencord-Desktop-VERSION.tar.gz, extract it somewhere and run vencorddesktop.

An AUR package and flatpak are planned, if you want packages for other repos, feel free to create them and they can be linked as unofficial here

Building

Packaging will create builds in the dist/ folder. You can then install them like mentioned above or distribute them

git clone https://github.com/Vencord/Desktop
cd Desktop

# Install Dependencies
pnpm i

# Either run it without packaging
pnpm start

# Or package
pnpm package
# Or only build the pacman target
pnpm package --linux pacman
# Or package to a directory only
pnpm package:dir

Motivation

The official Discord Desktop app is very resource heavy compared to Discord in your Browser. There are multiple alternative Electron apps (ArmCord, WebCord, probably more) that prove how much of a performance gain you can gain by using a custom app. ArmCord already supports Vencord but makes it pretty limited for us. Making our own standalone app gives us much more control.

This is just a random idea I (V) got, and might not actually ever be finished heh

Gluon also seems very attractive for this because of how lightweight it can be and because unlike electron, streaming just works out of the box like in any chromium browser. However, at the time of writing this, it still lacks some features necessary to make it work (synchronous ipc or a way to get node process variables into the onLoad function for instance, plus onLoad seems to load a little too late sometimes)