2023-07-13 17:03:13 +00:00
# Vesktop
2023-03-29 23:02:30 +00:00
2024-01-19 02:38:15 +00:00
Vesktop is a custom Discord desktop app
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
**Main features**:
- Vencord preinstalled
- Much more lightweight and faster than the official Discord app
- Linux Screenshare with sound & wayland
- Much better privacy, since Discord has no access to your system
2023-05-04 23:29:24 +00:00
2024-01-19 02:38:15 +00:00
**Not yet supported**:
- Global Keybinds
- see the [Roadmap ](https://github.com/Vencord/Vesktop/issues/324 )
2023-04-28 00:38:59 +00:00
2023-12-02 13:54:54 +00:00
![](https://github.com/Vencord/Vesktop/assets/45497981/8608a899-96a9-4027-9725-2cb02ba189fd)
2024-01-19 02:38:15 +00:00
![](https://github.com/Vencord/Vesktop/assets/45497981/8701e5de-52c4-4346-a990-719cb971642e)
2023-12-02 13:54:54 +00:00
2023-04-04 01:35:31 +00:00
## Installing
### Windows
2024-01-19 02:38:15 +00:00
If you don't know the difference, pick the Installer.
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
- [Installer ](https://vencord.dev/download/vesktop/amd64/windows )
- [Portable ](https://vencord.dev/download/vesktop/amd64/windows-portable )
2023-12-04 13:17:46 +00:00
2024-01-19 02:38:15 +00:00
### Mac
2023-04-09 02:35:04 +00:00
2024-05-06 18:27:32 +00:00
If you don't know the difference, pick the Intel build.
2023-04-09 02:35:04 +00:00
2024-05-06 18:27:32 +00:00
- [Intel build (amd64) ](https://vencord.dev/download/vesktop/amd64/dmg )
- [Apple Silicon (arm64) ](https://vencord.dev/download/vesktop/arm64/dmg )
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
### Linux
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
[![Download on Flathub ](https://dl.flathub.org/assets/badges/flathub-badge-en.svg )](https://flathub.org/apps/dev.vencord.Vesktop)
2023-04-04 01:35:31 +00:00
2024-01-19 02:39:27 +00:00
If you don't know the difference, pick amd64.
2024-01-19 02:38:15 +00:00
- amd64 / x86_64
- [AppImage ](https://vencord.dev/download/vesktop/amd64/appimage )
- [Ubuntu/Debian (.deb) ](https://vencord.dev/download/vesktop/amd64/deb )
- [Fedora/RHEL (.rpm) ](https://vencord.dev/download/vesktop/amd64/rpm )
- [tarball ](https://vencord.dev/download/vesktop/amd64/tar )
- arm64 / aarch64
- [AppImage ](https://vencord.dev/download/vesktop/arm64/appimage )
- [Ubuntu/Debian (.deb) ](https://vencord.dev/download/vesktop/arm64/deb )
- [Fedora/RHEL (.rpm) ](https://vencord.dev/download/vesktop/arm64/rpm )
- [tarball ](https://vencord.dev/download/vesktop/arm64/tar )
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
#### Community packages
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
Below you can find unofficial packages created by the community. They are not officially supported by us, so before reporting issues, please first confirm the issue also happens on official builds. When in doubt, consult with their packager first. The flatpak and AppImage should work on any distro that [supports them ](https://flatpak.org/setup/ ), so I recommend you just use those instead!
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
- Arch Linux: [Vesktop on the Arch user repository ](https://aur.archlinux.org/packages?K=vesktop )
2024-05-09 11:37:36 +00:00
- NixOS: https://wiki.nixos.org/wiki/Discord#Vesktop
2024-02-10 22:12:24 +00:00
- Windows - Scoop: https://scoop.sh/#/apps?q=Vesktop
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
## Building from Source
2023-04-04 01:35:31 +00:00
2024-01-19 02:38:15 +00:00
Packaging will create builds in the dist/ folder
2023-04-04 01:35:31 +00:00
```sh
2023-07-13 17:03:13 +00:00
git clone https://github.com/Vencord/Vesktop
cd Vesktop
2023-04-04 01:35:31 +00:00
# Install Dependencies
pnpm i
# Either run it without packaging
pnpm start
# Or package
pnpm package
2023-04-08 22:49:47 +00:00
# Or only build the pacman target
pnpm package --linux pacman
2023-04-04 01:35:31 +00:00
# Or package to a directory only
pnpm package:dir
```