Vencord / Installer

A cross platform gui/cli app for installing Vencord
GNU General Public License v3.0
491 stars 66 forks source link

Vencord Installer

The Vencord Installer allows you to install Vencord, the cutest Discord Desktop client mod

image

Usage

See https://vencord.dev/download

Building from source

Prerequisites

You need to install the Go programming language and GCC, the GNU Compiler Collection (MinGW on Windows)

Additionally, if you're using Linux, you have to install some additional dependencies: #### Base dependencies ```sh apt install -y pkg-config libsdl2-dev libglx-dev libgl1-mesa-dev dnf install pkg-config libGL-devel libXxf86vm-devel ``` #### X11 dependencies ```sh apt install -y xorg-dev dnf install libXcursor-devel libXi-devel libXinerama-devel libXrandr-devel ``` #### Wayland dependencies ```sh apt install -y libwayland-dev libxkbcommon-dev wayland-protocols extra-cmake-modules dnf install wayland-devel libxkbcommon-devel wayland-protocols-devel extra-cmake-modules ```

Building

Install dependencies

go mod tidy

Build the GUI

Windows / Mac / Linux X11
go build
Linux Wayland
go build --tags wayland

Build the CLI

go build --tags cli

You might want to pass some flags to this command to get a better build. See the GitHub workflow for what flags I pass or if you want more precise instructions