#🏥-vencord-support-🏥
1 messages · Page 199 of 1
vencord and vesktop have no influence on how your system deals with file picking
My system has 0 issues with file picking
it uses XDG portals
except in this 1 app
so if that's what the portal does, then that's how your system is configured to deal with it
Ty @hazy breach for trying to Help me, I uninstalled and installed everything again, now I have vencord back :)
the only thing i can really suggest to you is to use the flatpak over the appimage/package, if you are using the latter
Looks like this is a known issue: https://freedesktop.org/wiki/Specifications/thumbnails/
i have no idea what that is but that wouldnt be related to your file picker issue
since dolphin will have its own system for thumbnail storage
that's just a spec
again this is all i can recommend
if that doesn't work, it sounds like you haven't got your desktop portals set up properly
because you're using dolphin, does that mean you're on kde? have you installed xdg-desktop-portal-kde? do you have other xdg-desktop-portal packages installed because you've swapped desktop environments? if so, can you uninstall them if nothing else depends on them?
@undone anchor
Can some1 help me? The showhiddenchannels plugin doesnt work on all servers for me. Sometimes it just shows 3 channels under a suggested tab. Can i fiix that?
no, because discord didnt make it that way
its really dumb
its a vanilla client feature so
Yes, on kde / endeavourOS
can you check for other xdg-desktop-portal packages then please?
the only way i can think this is broken is that you have -gtk or -gnome installed
in which case, you need to uninstall both
xdg-desktop-portal-kde is installed
thumbnails while uploading files work for me on dolphin with the vesktop flatpak, so the issue is somewhere on your end
Ok let me check out the flatpak option
sad
its not norpc tho
so if I want to add my own custom vencord plugin to vencord, where do I start? how do I learn the api?
Seems like the issue is actually only for certain webp files, and not for all images.
Thanks for your suggestions.
how do use third party plugins
Read the pins of #1032200195582197831
Can you have two separate settings/whatever for two Discord desktop client (I have stable and PTB builds and both builds will use the same data)? You can change stuff on one client but then after reboot both will have data applied to whatever last change is made (i.e., plugins enabled)
Pls ping if responding tnx
what in all that is shiggy (resolved with force quit)
you timed out connecting to github
can we make suggestions somewhere 🙏
I heard it's possible to install the channeltabs plugin does anyone know how to? been looking at chat logs and some people have done it?
is there a plugin for sterio audio

I'm on a mac and I'm trying to install vencord, it seems like vencord is requesting full disk access and without it the installation failed. So is it necessary for vencord to have full disk access to work?
This message is misleading. Run sudo chown -R "${USER}:wheel" /Applications/Discord.app in your terminal, then run the installer again afterwards. You may also need to grant Terminal.app (and friends) full disk access for the operation to work properly.
yes sometimes
mmm
is there like an uwuifier thing like there is for betterdiscord but like for vencord or something
or like any way how to get uwuifier thing text doo hickey
Don't judge me.
istg if you do that again
question: is there a plugin that removes this popup from the channel list in servers? its rly annoying 😭 if so, whats the name of it bc i cant find anything like that
there is not but it should be easy to remove using a CSS snippet
I think I saw something in #🎨-css-snippets for that
Anyone know this?
oh neat! ill go look in that channel then :> thanks yall
cause there is a build or smthing
if ur talking about a 3rd party plugin, u need a dev build, and if ur not a dev u should not bother, otherwise u will have issues
what
so it's just better to wait until they add it.
Also I was talking about this https://github.com/Vendicated/Vencord/pull/499
🤯
Is there anyway to disable the 'Active Now' on the friends list, its annoying af lol
/** Hide "Active Now" column in home*/
.nowPlayingColumn_f5023f {
display: none;
}
put the above in quickcss and make sure custom css is enabled in vencord settings
ty, had something like that already but now it works
Sooo, like is there a vencord uwuifier thing or
it can be recreated using TextReplace
what?
Bro idk code 💀
And idk how to use textreplace
well then that sucks
bruh don't judge me
I need it for a translator
person
who speaks
in
uh
uhm
well
Just check what it is and use CSS to remove it
i found something in #🎨-css-snippets that removes it but thank you! :D
yea it's called my dms with ur mom
vns my dms with your mom | where ur mom and i met
with a gravestone?
yes.
NO
I KEEP DOING THIS
I KEEP VNSING IN SUPPORT BECAUSE MOBILE DISCORD IS BROKEN
im so sorry
Your honor, I think woozy is insane
vns #🧊-off-topic-iceman-only i should be here | i am stupid
Your honor, I agree
nvm figured it out
Is there a version for jailbreaked iPhones?
vf mobile
Yes actually! We have an Android app embedding the Discord website
However, as Discord's mobile website has some issues (performance, usability, etc), chances are you won't like it.In that case you will instead want to use one of the following mods focused on Mobile.
Do note however that these mods are not related to / affiliated with Vencord, so we do not provide support for them in any way. Join their support servers for help & more info!
- Vendetta (android/ios): GitHub - Discord Server
- Aliucord (android only, very outdated but still works well if you like the old version of Discord): GitHub - Discord Server
I use discord on Linux. Is there any way to fix the desktop audio not being shared when sharing the screen on a voice channel?
try using vesktop, our separate discord app which should have screensharing with audio https://github.com/Vencord/Vesktop
it is like using the website right?
sad, I use keybinds a lot. Thank you for letting me know!
I get this notification whenever I start up Discord. How do I fix it?
turn cloud off and on again
any way to get discord messages to show on vencord notification ? like they have on better discrd
run the installer and click uninstall
uh i just delted all of its files from discord and reinstalled discord does that work?
that works too
alr ty
Sorry in advance if this is not the right place to ask the question, but how do you go about parsing attachments from a Vencord command?
Currently, I have this code:
export default definePlugin({
options: [
{
name: "file",
description: "File attachment to use",
type: ApplicationCommandOptionType.ATTACHMENT,
required: false,
},
],
execute: CommandExecutor.executeCommand
// ...
});
// ...
const file = findOption(args, "file");
For some reason, I always get an undefined result.
I was looking at the source of the petpet command and found this petpet/index.ts.
I tried to reuse it myself, although to no avail. I just get an error:
// Trying to get a JSON object...
const test = UploadStore.getUploads(ctx.channel.id, 0);
console.log(test);
const uploadedFiles: File[] = [];
const upload: File[] = UploadStore.getUploads(ctx.channel.id, 0).item.file;
upload.forEach(item => {
uploadedFiles.push(item);
});
uploadedFiles.forEach(console.log);
What is the supposed or correct way of doing this, sorta thing? 🤔
what's your error
TypeError: Cannot read properties of undefined (reading 'file')
at Object.execute (VencordRenderer:142:11533)
at Object.ZP (VencordRenderer:20:54)
at j (WebpackModule916565:2:5825)
at async handleSendMessage (WebpackModule176347:2:7058)
actually #🧩-plugin-development cause you dont have perms for #👾-core-development
does the in app notifications for messages an existing plugin yet ?
it's in a pr right now, it might get merged soon
Anyone found out why screen sharing crashes my discord?
no one will find out unless you give more info
Client modifications are against Discord's Terms of Service.
However, Discord is pretty indifferent about them and there are no known cases of users getting banned for using client mods! So you should generally be fine as long as you don't use any plugins that implement abusive behaviour. But no worries, all inbuilt plugins are safe to use!
Regardless, if your account is very important to you and it getting disabled would be a disaster for you, you should probably not use any client mods (not exclusive to Vencord), just to be safe
Additionally, make sure not to post screenshots with Vencord in a server where you might get banned for it
shhh im talking about copyright and what part of the TOS specifically...
not copyright, just modifications in general are against tos
can i get the exact wording
look at the tos yourself
@covert hare https://discord.com/terms#6
specifically says that I in particular am not allowed to decompile/create derivatives of
and unless i been sleep modding, i haven't done nothing of the sort
If u live in EU, you have the right to modify any software as long as its not redistributed online
With some logical restrictions ofc
Like dont cheat on CSGO or Fortnite
i dont know why you want all the specifics but modifications are against discord's tos, but you will almost certainly not get punished
by installing vencord you are doing this
i am not the one decompiling nor creating the derivative, i am using what the developers have made
Hi, I was looking to add custom plugins to my vencord install but cant find anything on Google. I know that you're not supposed to help about these but if you can provide some help I'll be grateful. Thanks!
Geez I'm blind didn't see the video that explains how to install them, thanks!
by running the vencord installer YOU are modifying the discord client through the patch done by said installer
im pretty sure modifying falls under fair use, as the USCO (united states copyright office) has ruled that modification of software to enable new uses falls under the "transformative" essence under the fair use doctrine
you may not [...] modify [...] any of our software or services
pretty clear
yes. that's why it's not illegal
but just cause it's legal doesn't mean discord allows it
it is discord's right to make their own rules and ban anyone who doesn't follow the rules
Hello again, I was going to ask if there is a plugin to customize the banner or make an avatar a gif
Userbg for the background, I don’t think there’s anything for your avatar
Userpfp(only works of other people have the extension though)
Same with userbg
thanks
Hello, may I ask how does the CustomRPC plugin work? To be precise, how does setting the Streaming status work?
how it works
where can i find relevent documentation to make my own plugin?
||If you actually meant your own plugin (like a custom Vencord plugin that you have written, or one from the third party plugins channel), then you will need to set up a development build. We do not provide support for this, however, so you will be on your own. Please do not ask for any further assistance regarding this.||
For example, with the discord-rpc package for Node.js you do ipc connection with Discord but it's limited only to the Playing status. With Vencord's plugin, you can set any status so I'm wondering how it's possible (cuz with other methods it usually requires passing your account token doing a request to Discord's gateway to make the custom Streaming status, for example). I checked the plugin's source code and didn't really find the answer I was searching for, unfortunately.

unfortunately i'm looking for the documentation so i can actually write a plugin
ohh… i know nuthing about that
It's mostly just look at how other plugins are made
LOL disregard the bot
its just an autoreply that thinks youre asking how to use bd plugins
docs are on github in the /docs folder
you should make you be able to delete all deleted messages history in one channel
Rule 9.4
thats not what i mean
Or wait that was about clearing messagelogger's history wasn't it
yeah
ctrl + r
thx
My vencord is crashing when I right click a channel in any server, anyone know a fix to this?
vs e
To better help you, we need your error logs!
To collect them, please
- open DevTools with
ctrl + shift + i/cmd + option + i - on the top right, click where it says "Default levels" and uncheck everything but "Errors"
- screenshot all errors and post them
This issue has been fixed a while ago. read the announcements in the future.
How to update
- Discord Desktop: Use the Repair option in the installer
- Browser: Update the extension or Userscript
- Vesktop: Update to Vesktop 0.4.1. Use the "Update Vencord" option when right clicking the Vesktop tray icon. If you're on Mac, use the MenuBar. If you cannot do this, go to your config folder (
%APPDATA%on windows,~/.configon linux,~/Library/Application Supporton mac) and deleteVencordDesktop/VencordDesktop/vencordDist, then restart Vesktop.
ignore tessie
what
ignore this
okay
click webpackmodule
can someone help? i change discord DM icon, but it wont change, i hate seeing this normal discord DM icon.
Where I can see the changelog
plugins and css editor seem to not render properly in voice chat popout, for me atleast
https://user.you-sk.id/F4XtsVpFqDHG this is what popout vc chat looks like to me
https://user.you-sk.id/Qt2uG4XRp9Oi non popout
yes
yes
how do i install user plugins icant seem to find a faq on it
You need a dev install (not supported for normal users)
Read the pins of #1032200195582197831
do i need vencord client to do it
You just need to follow the instructions
alr
We also cant give support for any issues with the dev build
im using web version which means i dont have the src/userplugins file
Then you’ll need to build the extension yourself (I don’t know how)
alright
stupid question, but is there a way to use the inspect element without it closing and logging out the desktop client--
and sub- question, if not- is there a way to fix transparency, as i can nolonger use the command to set background transparency for reason stated above
<3~ ping plz
edit: just fixed, discord added a new class- ".bg__12180"
vf crash
This is a stock Discord issue. There is nothing we can do
However, here are some solutions that should work:
- Many people have stated that opening devtools while Discord is still loading prevents the crashing
- Devtools work fine in Vencord's custom client, Vesktop, or just your web browser - you can use the Vencord browser extension
- It seems to be an issue exclusive to Windows. You could try switching to Linux
<3~
Where is that exactly?
on your screenshot
installation help
so ive been trying to download for my discord app for awhile and i keep hitting the same bug, whenever i get the installer downloaded it says "need full disk access" (im on mac) and when i go to allow it and try again, it doesnt work. does anyone know how i can fix this, or what i''m doing wrong?
please grant the
This message is misleading. Run sudo chown -R "${USER}:wheel" /Applications/Discord.app in your terminal, then run the installer again afterwards.
You may also need to grant Terminal.app (and friends) full disk access for the operation to work properly.
that doesn't tell me much, I don't know what a webpack module is
it is third line from top to bottom on your screenshot
i tried this but it didn't work and ended up saying incident reported
what do i do
Okay, did that. now what?
was it something along the lines of user not in sudoers file, this incident will be reported
go google user not in sudoers file macos and after that it should work
how do i uninstall
Use the installer and press “uninstall”
with ps
Use the ps installer and select “uninstall”
i have no idea what this means, is there anyway you can simplify this
I don't use a mac so idk how to dumb it down any better than just you're missing administrator privileges
someone who knows more about macs might be able to give better help but at least for an hour or so I can't really be of more help, sorry
You’re missing sudo privilege, an admin has to give whatever user your on permission to use sudo
i have admn
how do i fix this?
downloaded vestop and fixed it
HEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEELP IM DYING
Actually
File picker in Vesktop not working 💔
Arch Linux (btw)
ooops mkv
But basically it cant read anything inside of the home directory!!
@shell veldt so..?
Maybe I should run it thru the terminal to show what it outputs
flatpak?
Oh yeah I think I might have tried to install it thru AUR then installed it thru flatpak
probably a permission issue then
also in my experience the aur package has been a better experience
hello vecnord support channel
your daily reminder that no screenshare preview crashes the client and needs to be fixed
:3
hi all. can I get some help on how to specify install location on ubuntu for Vencord?
snap is not supported
Ah so I should remove snap install with apt and then try again
is there a way to remove this fuck of a popup please
if not just add a plugin for it
i mean, yeah you can remove it, but the cooldown will still exist probably
css
where can i find it
how
with css
i dont think there is any snippet, so you might need to find it yourself
.form_a88d78
ok tyy
or that
wrong thing oops
uh
.layerContainer_d5a653 {
display: none;
}
.backdrop__7e89b.withLayer__1fe9d {display: none;}
[aria-label="WOAH THERE. WAY TOO SPICY"] {display: none;}```
i'll try
works tysm
it works for me
no i mean u cant press any buttons
you can press buttons with mine i think
use @scarlet agate's
let me test
ok one sec
yeah with mine you can still press buttons
yeah u can click settings buton not the toolbox or pfps
really? lemme see
lmfao i closed my csseditor now i cant disable it 😭 '
i can click pfps
but
works perfectly fine for me
i cant click the emoji thing
yours works fine
ican'tclickoutyourvideo
yippie
andthespacebuttondoesntwork😭
doesntwork
go to settings > themes > edit css
yepdonefuckedmydiscordinstall
oh
just close and reopen
what the fuck no
dont use that holy shit
yeah dontr
ik i used it and it fucked my shit up
now is there a workaround
use
doesnt work
it works but
i cant click emi=ojis
and
gif
and yeah the toolbar
just dont spam 7 mesages fast
yep and i can't do that
only thing you can do is combine them probably css .layerContainer_d5a653:has(> .layer_ad604d > [aria-label="WOAH THERE. WAY TOO SPICY"]) { display: none; }
though this could also just softlock discord and not allow you to click in anything in which case you wont be able to remove it with just css
u can always use hot key for settings and disable it via themes css
ill see
any way to get this to work?
then try using the NoRPC plugin instead
just remember this
ty
you need a dev install to do this, but if you do have it we cant give any support
Hello, when I activate any of them nothing happens. I use the browser
The userscript has issues with csp, yes
Is there a solution for that?
what browser
brave
themes and some plugins are broken in brave.
https://github.com/brave/brave-browser/issues/30854
there's ur answer
Well, it turns out that there is no solution yet due to the protection present in the browser itself, right?
themes and some plugins are broken in brave.
https://github.com/brave/brave-browser/issues/30854
i literally posted the same link tessie
Well well, thank you anyway
tessie L
:middle_finger:
where do u find message from messsagelogger if they are saved on your computer?
They aren't
fk
they arent, only messageloggerenhanced does that im pretty sure
yeah
im fked
ok
builtin messagelogger isn't a logger at all really, just prevents deletion of received messages and preserves edits in the active/recently viewed channels
and all of it gets wiped if channel is unloaded or you restart discord
i found that a hard way
still got this issue
Thanks
Can anyone help me? I want bigger avatars, please! ❤️
hello
is there a plugin that makes it faster to delete messages on my discord server?
if its your server use a moderation bot that can delete messages
found it
guys is there a way to get bigger file upload size?
any specific plugin to see the devices a user is using :
nitro
or your own filehost
discord's limit is hard set
no
any way to disable activies being displayed in status without disabling customrich presence too?
Quick question: I see there's a plugin to notify you of friend requests being removed, But; is there a plugin similar to what InAppNotifications does?
Src: https://github.com/QWERTxD/BetterDiscordPlugins/blob/main/InAppNotifications/InAppNotifications.plugin.js
In this way, I can always see new messages as I like to be on top of all of my pings.
Thank you for your time.
Just started using Vencord and already noticed something that is rather time consuming and a lil annoying... Namely no categorization of plugins...
Is there any way I can categorize them? Because looking through that large list is a bit tedious and search only really helps, if you actually know what to search for 😛
Also, looking at Vesktop, how exactly can I imagine it?
Like is it a true standalone desktop app, or is it like getting Discord and directly applies patches on first install? Or something else?
The description is a bit limited for me to really understand what exactly makes it so different outside of "aiming to give a snappier Discord experience with vencord pre-installed"
vesktop is a seperate client that loads the web version of discord with vencord applied
you can have both discord (+ vencord) and vesktop installed
but you do not need a preexisting discord install for vesktop
only for vencord
I see
vesktop is the best if you don't need ingame overlay or global keybinds
A bit sad the feature requests are closed.... Wanted to suggest this, if it isn't already on some roadmap.
not that I'm aware of, but yeah would be neat if plugins had tags or something and checkboxes to filter them, favoriting plugins would be neat too
Also, maybe some indicator for vencord users, so that we could recognize them... Toggleable tho, for when someone doesn't want to share that fact....
Tho, I can imagine it would be difficult to implement this that doesn't require an app to authorize or some kind of backend, which afaik is not used here (Only cloud I guess)?
Maybe with some kind of invisible icon/text stuff.... Tho then there could be other limits waiting.
vencord already has badges only visible to vencord users so there is a server that hosts this info and shares it with all users
but the ability to see your fellow vencord/other client mod users has been requested to basically every mod and has never been implemented
ok
hello I for past years I had only used betterdiscord and I have switched over to vencord today and I was wondering how safe is it to use the fake nitro plugin?
ah ok thank you
i cant seem to join the blackbox discord server
I installed a theme, didnt like it so I deleted it
but now it randomly applies itself even though I removed all the traces of it. Restarted discord, pc didn't work

vf themes
open the dev tools with CTRL + Shift + i and click on the "console" tab at the top. Then paste and run (with enter) the following code.
It will
- disable custom css (you can turn it back on in Vencord Settings)
- copy your current theme links to your clipboard as a backup
- remove all themes
(() => {
Vencord.Settings.useQuickCss = false
copy(Vencord.Settings.themeLinks.join("\n"))
Vencord.Settings.themeLinks = []
Vencord.Settings.enabledThemes = []
})()
could try that
it worked! thanks man
customrpc is not working properly.
My information
・Using the regular version of discord
problem
・It's working fine from my perspective, but it's not displayed from the other party's perspective.
I recreated the BOT and checked the application ID, but nothing seems to be wrong. I would be happy if you could teach me how to solve it.
can you send the links to the images used
ok
RPC itself is not visible from the other party's perspective
other person's point of view
my point of view
Please let me know if you need any other information
Send immediately
Sorry for my poor English
By the way, I tried reinstalling.
don't use cdn.discordapp.com links, the plugin should warn you about this
upload to the rich presence section in the developer portal, or use an external image host like imgur
if you try the first one
Understood
and use just the name you just added (in this image, my_cool_image) as the link
ok
Thank you for your kind response. I used an external image host such as imgur.
However, the other party's RPC is still not displayed.
;;
can you send your full plugin configuration?
😆 👍
Is there a plugin or mod to require a pin code when opening up discord? Similar to PasscodeLock for BetterDiscord?
Not
There’s no real need
no idea what's wrong, sorry
Seems pretty pointless to lock discord rather than the whole computer
It's okay, thank you for your cooperation.
I feel the same way
can i add plugins from betterdiscord into vencord?
Been a while since I last checked but are themes still broken?
themes work fine for me
some are
some aren't
no.
vf tos
Client modifications are against Discord's Terms of Service.
However, Discord is pretty indifferent about them and there are no known cases of users getting banned for using client mods! So you should generally be fine as long as you don't use any plugins that implement abusive behaviour. But no worries, all inbuilt plugins are safe to use!
Regardless, if your account is very important to you and it getting disabled would be a disaster for you, you should probably not use any client mods (not exclusive to Vencord), just to be safe
Additionally, make sure not to post screenshots with Vencord in a server where you might get banned for it
@broken tiger
in a server where you might get banned for it
means in a server where the mods would ban you from the server
Works Cloud sync for you guys? It worked for me for a month but hasn't now for the past half a year.
Disable and enable cloud integration
Should let you reauthenticate
Tried it a bunch of times and it doesn't help :/
I can record a vid if you want to
I also tried removing it as an authorized app today but yeah, still the same issue :(
is there still a way to use vencord on discord lateral bar for opera gx?
is there a way to hide unread count on server or folder ?
update vencord
wait nvm ur on web
we havent fixed it there yet
temporary solution #🏥-vencord-support-🏥 message
👍
Oh yeah, just checked stable DC, and it's working there. I used to use PTB, and it wasn't working there either.
hi
No
I don’t think so at least
Just ask your question
I downloaded Vencor and wanted to open the installation but it won't open
vs w
⚠️ Do not run the installer as Administrator
Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe
If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.
To do so, open Powershell, run the following command, then follow along with the instructions/prompts
iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
sorry
follow the powershell steps
where
Right here
i am having the same issue. Then, open powershell and run it with the following command. Answer questions when prompted (usually by typing a number). but my downloads are in my drive
nvm chatgpt helped
cd 'D:\Downloads'
.\VencordInstallerCli.exe --install
lol
wait nvm i still help @scarlet agate
Seems like Discord is still running in the background. Make sure you close it fully. It will most likely be in your tray, but if not you can use your Task Manager to force close it. After that, you should be able to install Vencord properly.
i fixed it
i didnt see it , thanks for help
i guess the perms of #moderator-only need to be fixed lmao
read the second instructions PROPERLY
everytime i try to install vencord i get:
i dont have a folder with that name (version) it's different wtf
type cd Downloads
./VencordInstallerCli.exe --install
After doing this, I tried to open the setup again and it worked.
i fixed it
I'm happy for you, enjoy it
Did you write the code they gave you?
https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1 are you sure you wrote this?
all
Hi. i just downloaded vencord but once i click the file it don't open. can i anyone help me.
Hi. i just downloaded vencord but once i click the file it don't open. can i anyone help me.
use
powershell
Type -install
write
Then try double clicking to open it again.
When I did this the problem was solved
vs w
⚠️ Do not run the installer as Administrator
Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe
If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.
To do so, open Powershell, run the following command, then follow along with the instructions/prompts
iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
idk how u even got there
start from 0
open powershell, paste this in
iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
press enter, follow steps
he did these
dont download anything dont cd anything
just do that, it does it all for u
no need but do it just in case
then just copy paste this in and press enter
it should look like this
might have to give it a moment yeah
i assume you're doing all this because the normal installer wont open?
If the installer doesn't open, follow the second section of the install instructions.
now when you're here just type 2 and press enter, that will choose the terminal installer
yeah it was downloading stuff
now choose install vencord (1) and after that you most likely wanna choose 1
then it should be done
yeah it gives you a choice
What do you want to do?
- Install Vencord
- Install OpenAsar
- Uninstall Vencord
- Uninstall OpenAsar
- Reinstall & Update Vencord
Q) Quit without doing anything
so you choose a number and press enter to choose the option you want
act as if you don't have a mouse
it's keyboard only
so you just type 1 and press enter to choose the 1st option
now just do 1 and enter again
it should close discord
and after that on the bottom it will tell you if it succeeded or not
or maybe not, im not sure
there should be more text showing up soon
should say something like "patched successfully" at the bottom
hm, no vencord options in settings?
try doing the same thing again maybe but close discord first
through this
oh okay thats good
try restarting discord then
quit and then open again
hm weird are you sure
scroll to the bottom of your settings and screenshot the text at the bottom
just to make sure that you're looking at the right place, this is where it should be
oh yeah, there should be vencord related text down here too
do you have multiple discord installs?
the installer says everything is fine so thats weird
open task manager, find discord and expand it
right click any of the discords and ‘open file location’
someone else had a similar issue and completely reinstalling discord then installing vencord again fixed it for them
ok so basically i enabled the reverse image search plugin and when i try to reverse image search nothing happens
Hi. i just downloaded vencord but once i click the file it don't open. can i anyone help me.
Is there a theme that switches all icons back to before discord changed them to..... This 🤢
(Preferably one that only does this, so it doesn't affect another theme I use)
vs w
⚠️ Do not run the installer as Administrator
Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe
If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.
To do so, open Powershell, run the following command, then follow along with the instructions/prompts
iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
there's an experiment for it
yeah try it
doesn't matter, it's not doing anything
idk if it changes anything but after uninstalling discord i told the person to also delete the discord folder
before reinstalling again
that would be in C:\Users\dell\AppData\Local
so if you wanna try that then you can do that but it might not be necessary
Yeah, found it.
Tho, I feel like it's even more risky to use experiments than Modded Discord itself xD
Also, how long may it stay? Can experiments get removed eventually?
experiments can be added or removed at any time
there was an experiment that detected when a modded discord client was using it but it just showed some joke messages instead of doing anything bad to you, so that being said discord doesn't care, you're not gonna get banned
anyway i've been using the experiment for a while and it still works
it's called "Redesigned icons experiment"
What I mean is, can discord completely remove one eventually?
experiments can be added or removed at any time
yes, experiments can be added or removed at any time by discord
That could eventually be an issue then... So hopefully that noUglyIcons theme is completed by that point 😛
help vencordinstaller not opening
If the installer doesn't open, follow the second section of the install instructions.
i double click but nothing happening
vs w
⚠️ Do not run the installer as Administrator
Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe
If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.
To do so, open Powershell, run the following command, then follow along with the instructions/prompts
iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
i dont run administrator
do this #🏥-vencord-support-🏥 message
im using windows 8.1
read the rest
follow the powershell instructions
it is supported. read the rest of the message.
you still havent read the rest
reading is hard give them a break
what rest
literally a majority of the message
i just compiled vesktop and i'm trying to select the dist directory in the vesktop-git package from the aur, but it doesn't work. is the pacman/aur version compiled in another way?
it seems like it compiled fine
i cant paste codes to powershell
not related to support but it rickrolled you when you tried to "figure out more" about the feature which is just amazing
try this
true
once again unrelated to support (i'll stop after this) but what's your monitor res? that text looks extra nice
'pnpm i && pnpm build' shooould work? but im not entirely sure
4k with 200% scaling
are you able to visit https://github.com/ in a browser
theres only one, maybe u have details disabled
yes
are you able to visit https://raw.githubusercontent.com/ in a browser
i visit
if youve opened the folder, please send the location of that folder here
please follow this #🏥-vencord-support-🏥 message
right click on the one that says support
and click open file location
copy the folders location, which is located at the top
and send it here
your discord install is in an unusual location
indeed it is
C:\ProgramData\dell\Discord
can you do the powershell thing again
vs w
⚠️ Do not run the installer as Administrator
Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe
If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.
To do so, open Powershell, run the following command, then follow along with the instructions/prompts
iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
you can attempt to install using the "custom install location", providing that folders path when it asks
i installed it
Can I install vencord on the canary discord?
yes
Ive got a 1080p monitor turned to portrait that i put discord and as of today it suddenly refuses to fit. I was doing this without vencord's "Disable minimum window size" option enabled and now even with it enabled I'm still having the same issue.
what is this? i don't think i have a plugin enabled to do that?
thanks
No idea if u guys would kno how to solve this issue but
Do y'all know why Vesktop through Flatpak (on the left) loads icons correctly with this theme but not Vesktop through AUR (on the left)?
The icons dissappear too when I hover my mouse on them
is there plugin show this small screen like a line or disable it ?
Electron 28 seems to crash vencord on start
% electron28 /usr/share/discord-ptb/resources/app.asar
[Vencord] Starting up...
App threw an error during load
TypeError: Cannot read properties of undefined (reading 'filename')
at VencordPatcher:12:4888
at VencordPatcher:5:225
at Object.<anonymous> (VencordPatcher:12:18483)
at Module._compile (node:internal/modules/cjs/loader:1271:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1326:10)
at Module.load (node:internal/modules/cjs/loader:1126:32)
at Module._load (node:internal/modules/cjs/loader:967:12)
at l._load (node:electron/js2c/asar_bundle:2:13642)
at Module.require (node:internal/modules/cjs/loader:1150:19)
at require (node:internal/modules/cjs/helpers:119:18)
A JavaScript error occurred in the main process
Uncaught Exception:
TypeError: Cannot read properties of undefined (reading 'filename')
at VencordPatcher:12:4888
at VencordPatcher:5:225
at Object.<anonymous> (VencordPatcher:12:18483)
at Module._compile (node:internal/modules/cjs/loader:1271:14)
at Module._extensions..js (node:internal/modules/cjs/loader:1326:10)
at Module.load (node:internal/modules/cjs/loader:1126:32)
at Module._load (node:internal/modules/cjs/loader:967:12)
at l._load (node:electron/js2c/asar_bundle:2:13642)
at Module.require (node:internal/modules/cjs/loader:1150:19)
at require (node:internal/modules/cjs/helpers:119:18)
using electron27 works fine
then dont do that
we dont support electron versions that we or the discord client dont use
👍
can i upload large files with vencord
no
that has nothing to do with the electron version, it just means require.main is undefined. which should never happen
for petpet plugin, URL and attachment don't seem to work, only user works?
URL gives this:
attachment gives this:
update
i am up to date
are you using the browser extension
no
vs e
To better help you, we need your error logs!
To collect them, please
- open DevTools with
ctrl + shift + i/cmd + option + i - on the top right, click where it says "Default levels" and uncheck everything but "Errors"
- screenshot all errors and post them
url works after restarting, though one host i was trying gave me "http://... has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.", is that a fixable problem or is that down to discord itself?
that's down to the url you're using coming from a site that doesn't allow other sites to load it
it's hard these days to find any hosts that allow direct links
you can just not use that url. download the file and upload it to discord and use the discord link and it'll work
or use imgur
good idea, i don't know why i didn't think of that, thanks
i wasn't sure imgur allowed direct links since they seem to redirect
when i install vencod i have issiue with delete the squirrel or discord folders help me
also, since many channels don't allow uploads, would it be possible to allow the /petpet command to upload the image to another channel or a dm and then post the link in current channel, or conversely, allow users not in a dm or channel to be specified in /petpet user so i can use the command in another channel/dm and specify a user that is not in that channel/dm (without using < @ userid >)
help me plz i have facing this problem
think you're gonna have to be more specific
no, just do it manually
ok
only their id
noone wants to help you in vc. read the message and do what it says and your issue will be fixed
ok
so far i'm liking vencord a lot more than bd, it was so laggy
how to solve this problem tell me delete the squirrel or discord folders
i unisntall discord and reinstall but my problem not solve
and setting up plugins in vencord takes like 5 min, took me hours in bd
yes delete them
next install https://github.com/Vencord/Vesktop and your performance will be better than on stock discord 
i delete and reinstall but my problem not solve
ok
Show this
Your Discord seems to have installed in the wrong place. This could be due to a variety of issues.
To fix it, click the "Take me there!" button and follow the instructions in the dialog.
Hello mod plz help me what should I do next
read the second paragraph in the photo you sent. that will tell you what you need to do
Yes but folder not showing
another minor issue, it seems if i specify a delay below around 15, it goes super slow
Screenshot
Wait
yes. gifs are... weird
i advise you to just not touch the delay
i made gifs with ezgif that went faster and worked no problems
is this where it takes you when you click "take me there"?
Yes
What does the error tell you to do, if there is a folder named Discord
i think it might be a chromium issue or something, or a weird quirk with our gif encoder. i honestly don't know, but yeah
Delete this folder ?
thats what it says
if it would help you can see what the differences are in the file produced with https://ezgif.com/speed
setting the delay too low is kinda counter productive because there are only so many frames per second the browser will show
Ok wait
it does tell you what to do
true, i think 10 is a safe number though
no. i have no interest in debugging this, sorry
you can do so yourself if you're capable
but gif is a terrible terrible format and delay always behaves weird and isn't consistent across programs
they were told to delete the folder several times in this channel
support moment
true
i agree with you there, shame apng isn't widely supported
Thanks all who help me 🙏 finally done
discord even supports apng, but if you try to upload/embed them, the animation doesn't play..
i hate discord sometimes
this says that most browsers only play up to 50fps. that means if you set the delay to anything below 20s, the browser decides what to do and that's why it's slooooow
i saw, but strange that it works for some gifs
unless ezgif is frameskipping, which it doesn't seem like it is
well the petpet gif only consists of 10 frames
so it will just loop around and seem like it's going slower ig?
try speeding up the petpet gif with ezgif and see if it works
it actually doesn't. so i checked the other ones that do, and they only have 5 frames, so i guess that has something to do with it
the others were made with https://benisland.neocities.org/petpet/
editing plugins is not that simple on vencord but i'll have a look
anyone know why it shows no Discord installs found
How did you install discord
By downloading discord...
Linux or windows
Did you install discord to a weird place or somethin
Lmao
cannot find
yeah it installed somewhere else
nani
open task manager
do i reinstall it
send the folder path
click on the little space to the right of this text
C:\Windows.old\Users\user\AppData\Local\Discord\app-1.0.9028
windows.old moment
wha
that's really weird but alright
won't worry about that
C:\Windows.old\Users\user\AppData\Local\Discord
copy this open the vencord installer
put that in the custom location?
windows.old gets deleted within 30 days btw
so what
so how do i get out of windows.old
yeah
fun
its some weird thing windows does in case you want to revert an update
will fix both the vencord issue and the fact it's in windows.old
which it really shouldn't be
do i uninstall first (i assume so right)
no wonder it gave me an error message
huh i cant even choose where to put it
i did that
now the command works
just installing it
i thought it would have given me a selection to put it somewhere
ight now im gonna go read how to plugins
I'm a bit confused but if you got vencord to work then that's good I think
I got it to work thats all it matters
can we add extra plugin to vencord?
I used to use messagelogger with betterdiscord for mod purposes but then the whole thing just broke down
won't happen with vencord thankfully, everything is compatible with each other and already built in
thing is the person didnt update it so which is why it broke down
iLoveSpam is god tier
imma just go 🍃
vf mobile
Yes actually! We have an Android app embedding the Discord website
However, as Discord's mobile website has some issues (performance, usability, etc), chances are you won't like it.In that case you will instead want to use one of the following mods focused on Mobile.
Do note however that these mods are not related to / affiliated with Vencord, so we do not provide support for them in any way. Join their support servers for help & more info!
- Vendetta (android/ios): GitHub - Discord Server
- Aliucord (android only, very outdated but still works well if you like the old version of Discord): GitHub - Discord Server
welp
im stuck with a theme that i cant remove
vf themes
open the dev tools with CTRL + Shift + i and click on the "console" tab at the top. Then paste and run (with enter) the following code.
It will
- disable custom css (you can turn it back on in Vencord Settings)
- copy your current theme links to your clipboard as a backup
- remove all themes
(() => {
Vencord.Settings.useQuickCss = false
copy(Vencord.Settings.themeLinks.join("\n"))
Vencord.Settings.themeLinks = []
Vencord.Settings.enabledThemes = []
})()
thanks
Guys I'm not able to install vencord on my Kindle browser. Y'all have any fix for this?
Try installing windows
idk why but vencord wont install. It says its installed but when i look in settings theres nothing there
Did anything pop up on the installer?
Assuming ur on windows
at first it said that there were files that werent supposed to be there and i had to delete them (it was like a squirrel file and a discord file)
and then it said i was good and that it should be installed (but it isnt.. and i dont know why)
Try again and send a screenshot
Open task manager, look for discord and close it. Or just restart your pc, then run the installer again
ive tried that already
ill retry it tho to see maybe if it'll work
nope. :(
i might have to reinstall discord but im not that desperate for it
You need a dev install
You can't.
Chances are, it's already a Vencord plugin! Or if it isn't, you can open a plugin request
- do you know what git is and how it works
- do you actually know how to code
if you answered yes to both then clone the repo, read the 2_plugins.md file in the docs directory
more help than that you're probably not gonna get here
Hi i am not able to ummute mic in the vesktop client, i have allowed apps to use the microphone in the privacy settings
oh wait i fixed it lol
the link to plugin request doesn't work
what
in the bot reply
Okay well
Just so you know
They're currently closed
what is it
FavoriteMedia
it's such an obvious thing for discord to add like it doesn't make sense why you can favorite animated images but not non animated images but i know why they do it, obviously so people can't use it as a replacement for stickers
not surprised people keep asking tbh, it's by far the most useful discord plugin i've used
its not working
Your Discord seems to have installed in the wrong place. This could be due to a variety of issues.
To fix it, click the "Take me there!" button and follow the instructions in the dialog.
but there is nothing there
send a screenshot of the folder it takes you to
ven
maisy
@shell veldt may I ask why I got prohibited to write in #👾-core-development
read channel description
Oh, didn't see that change
I cant use the cloud, there is an api error
Turn it off and on
any way to disable activities from status while still allowing customRP to show?
so can you teach me how to add?
read the pins of the #1032200195582197831 channel
ok thx
can i give a suggestion here?
suggestions are closed, i don't think any dev considers them anymore
ah shit alr understandable ig
i need help when i try to open vencord nothing happens
i have already re-installed it but didnt work
@rich tide you can tell me how i can download vencord with power shell
hi guys, can you help me find a premium screenshare plugin that enables hd screensharing
Fakenitro
thx
Moreusertag plugin
Disable the "More User Tags" plugin
why no vencord for firefox
but you can use the userscript
Not hard to do with css
Though I did make a plugin to remove that, and a few other elements more thoroughly https://github.com/Kyuuhachi/VencordPlugins/tree/main/98Anammox
only with a dev install
Abc to be in my new gc if u want to be add me
how i can to unpached vencord
what is gc
garbage collector?
graphics controller
groupchat probably
re-run the installer
Vesktop sets my profile to Idle while gaming. Is that normal?
because your playing? what you expect it the status? online? dnd? streaming? 
because it detects the game? maybe..
Well, it detects it in Vesktop as well
i dont think vesktop can detect your mouse moving outside of the app (assuming thats how it works)
or something similar to that
yeah, doing something like that can affect performance, like the app is not focused. hmmm
Then I guess that explains the resource usage of Discord, along with that using an old version of Electron
again, thats assuming im correct (im very likely not)
you can use a userscript in tampermonkey to enabled vencord in any browser, incloding firefox
can vencord work on windows 7?
⚠️ Do not run the installer as Administrator
Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe
If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.
To do so, open Powershell, run the following command, then follow along with the instructions/prompts
iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
then how to make it work because i click on it and don't work
Run the powershell code, the gui installer doesn’t work on 7
ok
Hey guys, is there a way so that "show my screen share" and "show non video participants" is unticked by default? If there's not where do I now put feature requests?
Hey guys, i heard you can get back the tag with the pomelo Experiment is this true?
probably not
afaik discord has completely rolled out the new username system and the clients don't even recognise the old usernames anymore or something like that
oh damn
also wouldn't risk it, people using the pomelo experiment got suspended back when it was being rolled out afaik
dang alr
well i got scammed for 5 bucks XD by some dude on telegram
😂
I have at least one friend who is still actively using an old username
oh and bots
there are some people here too clinging onto discriminators
but once you switch there's no going back
unable to join the discord for user background banners
how is that a vencord issue

