Package Details: vesktop-bin 1.5.2-2

Git Clone URL: https://aur.archlinux.org/vesktop-bin.git (read-only, click to copy)
Package Base: vesktop-bin
Description: A cross platform electron-based desktop app aiming to give you a snappier Discord experience with Vencord pre-installed
Upstream URL: https://github.com/Vencord/Vesktop
Keywords: discord electron vencord
Licenses: GPL-3.0-only
Conflicts: vencord-desktop, vesktop
Provides: vencord-desktop, vesktop
Submitter: zxp19821005
Maintainer: zxp19821005
Last Packager: zxp19821005
Votes: 33
Popularity: 9.86
First Submitted: 2024-01-15 09:12 (UTC)
Last Updated: 2024-05-06 04:23 (UTC)

Pinned Comments

zxp19821005 commented on 2024-01-17 01:43 (UTC)

This package has renamed to vesktop-bin (https://aur.archlinux.org/packages/vesktop-bin).

Latest Comments

« First ‹ Previous 1 2 3 4

tulpenkiste commented on 2023-10-25 11:45 (UTC) (edited on 2023-10-25 11:55 (UTC) by tulpenkiste)

After a bit of work trying to get it to open properly (kept giving me a white screen), I can't use plugins on the latest version as it just says "Patch by [plugin's api] had no effect".

Stable 240327, a1ba594
Vencord: Version 0.4.1, 97c0fac
Electron 27.0.2


Edit: it's an upstream problem from what I see.

zxp19821005 commented on 2023-09-25 01:50 (UTC)

@DozNaka Thanks for you feedback,fixed it.

DozNaka commented on 2023-09-21 21:53 (UTC)

Fails to install due to 404 not found File name on the download link is incorrect (supposed to be VencordDesktop_0.3.0_amd64.deb)

zxp19821005 commented on 2023-09-21 01:34 (UTC)

@sylv Thanks for you feedback.Fixed it.

sylv commented on 2023-09-20 02:59 (UTC)

I'm pretty sure the description is wrong.

It should say "A standalone Electron app that loads Discord & Vencord".

zxp19821005 commented on 2023-08-17 01:06 (UTC)

@HentaiShiroYuki Accepted it.Thank you!

hollow.moe commented on 2023-08-16 17:14 (UTC) (edited on 2023-08-16 17:16 (UTC) by hollow.moe)

Fixed PKGBUILD broken due to project renaming "Vesktop" https://github.com/Vencord/Vesktop/pull/57

pkgname=vencord-desktop-bin
_appname=vencorddesktop
_pkgname=Vesktop
_assetname=VencordDesktop
pkgver=0.3.0
pkgrel=1
pkgdesc="An Electron based Mastodon, Pleroma, and Misskey client"
arch=('x86_64')
url="https://github.com/Vencord/Vesktop"
license=('GPL3')
depends=('bash' 'electron25')
provides=("${pkgname%-bin}=${pkgver}")
conflicts=("${pkgname%-bin}")
source=("${pkgname%-bin}-${pkgver}.deb::${url}/releases/download/v${pkgver}/${_assetname}_${pkgver}_amd64.deb"
    "${pkgname%-bin}.sh")
sha256sums=('8dd9730ad5f638dfb95b478d68b185664a3130a19314eb79a9dc09edcb9dfbef'
            '283634e33143121d09020e79dbe44d5380b7f976258e4a44ef772a2676affa04')
package() {
    bsdtar -xf "${srcdir}/data.tar.xz"
    install -Dm755 "${srcdir}/${pkgname%-bin}.sh" "${pkgdir}/opt/${pkgname%-bin}/${pkgname%-bin}"
    install -Dm644 "${srcdir}/opt/${_pkgname}/resources/app.asar" "${pkgdir}/opt/${pkgname%-bin}/${pkgname%-bin}.asar"
    sed "s|/opt/${_pkgname}/${_appname}|/opt/${pkgname%-bin}/${pkgname%-bin}|g;s|Icon=${_appname}|Icon=${pkgname%-bin}|g" \
        -i "${srcdir}/usr/share/applications/${_appname}.desktop"
    install -Dm644 "${srcdir}/usr/share/applications/${_appname}.desktop" "${pkgdir}/usr/share/applications/${pkgname%-bin}.desktop"
    install -Dm644 "${srcdir}/usr/share/icons/hicolor/0x0/apps/${_appname}.png" "${pkgdir}/usr/share/pixmaps/${pkgname%-bin}.png"
}