project-client/README.md

71 lines
2.3 KiB
Markdown
Raw Normal View History

2023-07-13 17:03:13 +00:00
# Vesktop
2023-03-29 23:02:30 +00:00
2023-10-11 15:24:39 +00:00
Vesktop is a cross platform desktop app aiming to give you a snappier Discord experience with [Vencord](https://github.com/Vendicated/Vencord) pre-installed
2023-04-04 01:35:31 +00:00
2023-05-04 23:30:11 +00:00
**Not yet supported**:
2023-05-04 23:29:24 +00:00
- Global Keybinds
Bug reports, feature requests & contributions are highly appreciated!!
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)
![grafik](https://github.com/Vencord/Vesktop/assets/45497981/8701e5de-52c4-4346-a990-719cb971642e)
2023-04-04 01:35:31 +00:00
## Installing
### Windows
2023-07-13 17:03:13 +00:00
Download and run Vesktop-Setup-VERSION.exe from [releases](https://github.com/Vencord/Vesktop/releases/latest)
2023-04-04 01:35:31 +00:00
### Mac
2023-07-13 17:03:13 +00:00
Download and run Vesktop-VERSION.dmg from [releases](https://github.com/Vencord/Vesktop/releases/latest)
2023-04-04 01:35:31 +00:00
### Linux
2023-12-04 13:17:46 +00:00
[![](https://dl.flathub.org/assets/badges/flathub-badge-en.svg)](https://flathub.org/apps/dev.vencord.Vesktop)
2023-04-09 02:35:04 +00:00
#### Arch based
2023-04-09 02:35:27 +00:00
Install [vencord-desktop-git](https://aur.archlinux.org/packages/vencord-desktop-git) from the AUR using your favourite AUR helper, for example [yay](https://github.com/Jguer/yay)
2023-04-09 02:35:04 +00:00
2023-04-04 01:35:31 +00:00
#### Ubuntu/Debian based
2023-07-13 17:03:13 +00:00
Download Vesktop-VERSION.deb from [releases](https://github.com/Vencord/Vesktop/releases/latest)
2023-04-04 01:35:31 +00:00
#### Fedora/RHEL based
2023-07-13 17:03:13 +00:00
Download Vesktop-VERSION.rpm from [releases](https://github.com/Vencord/Vesktop/releases/latest)
2023-04-04 01:35:31 +00:00
#### Other
2023-07-13 17:03:13 +00:00
Either download Vesktop-VERSION.AppImage and just run it directly or grab Vesktop-VERSION.tar.gz, extract it somewhere and run `vencorddesktop`.
2023-04-04 01:35:31 +00:00
2023-12-04 13:17:46 +00:00
If other packages are created, feel free to open an issue and we'll link them here.
2023-04-04 01:35:31 +00:00
## Building
Packaging will create builds in the dist/ folder. You can then install them like mentioned above or distribute them
```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
```
2023-03-29 23:17:48 +00:00
## 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.