#🏥-vencord-support-🏥
1 messages · Page 1 of 1 (latest)
j
first
i hope you explode.
why is there a forum tag on a regular channel
what
skill issue
hi can i have support
ye
ok please support me by telling me ur credit card number expiration date and three numbers on the back
h
lmao
If I have multiple accounts, how do I install to one client and not the other? Specifically I'd like to install to ptb and not stable.
the installer lets you select which branch to install vencord to
oh thx
oh whoops, apparently not on linux :^)
waiting for vencord userscript :')
what that mean
"read the fucking manual"
i read the manual
input the full path for the patcher
like C:\Users\yourname\Vencord\dist\patcher.js
that's what worked for me
but it already in there
when installing
patcher.min.js
like this
now it work
The fumo did it
good

i thought i just need to type this
me too
u need to type full huh
lol
meguinstaller > 
fix the damn manual
but I noticed index.js had require('dist/patcher.js') so I tried the full path and it worked
anyways imma just fucken
add a pnpm patch
ah was about to ask the same question as the above. So it is the full path to the patcher
that echos out full path?
imo xinto should just make it so that it automatically checks cwd for dist patcher
for some reason I'm lost trying to find the full path I've tried several paths and it still returns the same error
#🧊-off-topic-iceman-only message use this guide
if you can't install it then you need to go back to kindergarden and learn how to read
Thanks for your help I installed it I'm glad that I got amoled I don't even use themes I just like the extra dark mode lmao
I installed it, said it was successful and installed, I restarted discord and I can't see it there. I've tried re-doing it and now it says it is already modified, any ideas?
how did you restart discord?
seems fine
yeah, just not sure why it isn't showing up in discord
sometimes discord keeps running stuff in the background maybe check via taskmanager
nah I even restarted my PC and it isnt there
for some reason i cant run the installer from the terminal
oh pwsh needs .\
cring
I didn't know, cmd doesn't need it so readme doesn't include it
but yeah do what it says
@real forum
me when i don't read the error message
:/
Oof
how can i make a plugin and test it?
like it seems kinda impossible without adding a plugin to the source and reinstalling
which is probably still the only way
you have to do the full path
open dist folder and shift-right click the patcher js and copy as path
and use that when the installer asks for patcher path
choose uninstall and do it again
might be already installed (not actually)
had this issue where it told me it was installed tho it was not
guh
funny pnpm lock conflict
funny my pnpm lock is different but it never complains
it only complains if the remote pnpm lock changed
since you'll get a merge conflict
hmmm
the vencord installer binary fails to work
i have kotlin installed
all of the normal depedencies
i am on macos
output of tree ```
.
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── browser
│ ├── Vencord.ts
│ ├── VencordNativeStub.ts
│ ├── background.js
│ ├── content.js
│ └── manifest.json
├── build.mjs
├── buildWeb.mjs
├── dist
│ ├── patcher.js
│ ├── patcher.js.map
│ ├── preload.js
│ ├── preload.js.map
│ └── renderer.js
├── install.ps1
├── install.sh
├── node_modules
│ ├── @types
│ │ ├── node -> ../.pnpm/@types+node@18.7.13/node_modules/@types/node
│ │ ├── react -> ../.pnpm/@types+react@18.0.17/node_modules/@types/react
│ │ └── yazl -> ../.pnpm/@types+yazl@2.4.2/node_modules/@types/yazl
│ ├── discord-types -> .pnpm/discord-types@1.3.26/node_modules/discord-types
│ ├── electron -> .pnpm/electron@20.1.0/node_modules/electron
│ ├── electron-devtools-installer -> .pnpm/electron-devtools-installer@3.2.0/node_modules/electron-devtools-installer
│ ├── esbuild -> .pnpm/esbuild@0.15.5/node_modules/esbuild
│ └── yazl -> .pnpm/yazl@2.5.1/node_modules/yazl
├── package.json
├── pnpm-lock.yaml
├── src
│ ├── Vencord.ts
│ ├── VencordNative.ts
│ ├── api
│ │ ├── MessageEvents.ts
│ │ ├── Notices.ts
│ │ ├── index.ts
│ │ └── settings.ts
│ ├── components
│ │ ├── ErrorBoundary.tsx
│ │ ├── ErrorCard.tsx
│ │ ├── Flex.tsx
│ │ ├── Link.tsx
│ │ ├── Settings.tsx
│ │ ├── Updater.tsx
│ │ └── index.ts
│ ├── globals.d.ts
│ ├── ipcMain
│ │ ├── index.ts
│ │ └── updater.ts
│ ├── patcher.ts
│ ├── plugins
│ │ ├── STFU.ts
│ │ ├── apiMessageEvents.ts
│ │ ├── apiNotices.ts
│ │ ├── banger.ts
│ │ ├── betterGifAltText.ts
│ │ ├── betterUploadButton.ts
│ │ ├── clickableRoleDot.ts
│ │ ├── consoleShortcuts.ts
│ │ ├── experiments.ts
│ │ ├── iLoveSpam.ts
│ │ ├── ify.ts
│ │ ├── index.ts
│ │ ├── isStaff.ts
│ │ ├── messageActions.ts
│ │ ├── muteNewGuild.ts
│ │ ├── nitroBypass.ts
│ │ ├── noReplyMention.ts
│ │ ├── noSystemBadge.ts
│ │ ├── noTrack.ts
│ │ ├── plainFolderIcon.ts
│ │ ├── randomiseFileNames.ts
│ │ ├── settings.ts
│ │ ├── silentTyping.ts
│ │ ├── unindent.ts
│ │ └── viewIcons.tsx
│ ├── pluginsModule.d.ts
│ ├── preload.ts
│ ├── utils
│ │ ├── ChangeList.ts
│ │ ├── IpcEvents.ts
│ │ ├── constants.ts
│ │ ├── debounce.ts
│ │ ├── isWeb.ts
│ │ ├── logger.ts
│ │ ├── misc.tsx
│ │ ├── modal.tsx
│ │ ├── quickCss.ts
│ │ ├── types.ts
│ │ └── updater.ts
│ └── webpack
│ ├── common.tsx
│ ├── index.ts
│ ├── patchWebpack.ts
│ └── webpack.ts
├── tsconfig.json
├── uninstall.ps1
├── uninstall.sh
└── vencord_installer
19 directories, 82 files
the binary should work
help please!
how do you install this on discord canary
same instructions but for canary dir
Easiest way to get around this is just to remove the pnpm lock file
or
git reset --hard
shrimple
hi, tried to install vencord and got this error
https://doxbin.lol/upload/PonyTrap
wtf
Replace discord editor with Monaco editor so I can ctrl [
yep i ran it in vencord directory
the same one i cloned
maybe i can install manually with the ps script ?
by editor you mean the textinputs?
out of curiosity has it been reported that the isStaff plugin gives everyone a staff badge in DMs
ok cool
would be interesting if there was a way to set it up in such a way that anyone who has the plugin installed would still have the badge but that might be difficult to set up the api that everyone interacts with
also wouldn't really be helpful in any way so nvm
it's not a bug I have simply been hired by discord 
ye
just delete the pnpm lock
that's not the purpose of the isStaff plugin tho
so no
it's not supposed to give you a badge or anything
run git reset --hard in vencord folder
it just enables some extra settings
what is that horrendous screenshot outline
sharex i think
casually does 'git pull' and nothing breaks
Hello all,
I'm trying to install Vencord on my system but I'm running in to an error:
A JavaScript error occurred in the main process
Uncaught Exception:
Error: Cannot find module 'electron-devtools-installer'
Require stack:
- /opt/discord/resources/dist/patcher.js
- /opt/discord/resources/app/index.js
-
at Module._resolveFilename (internal/modules/cjs/loader.js:887:15)
at Function.n._resolveFilename (electron/js2c/browser_init.js:261:1128)
at Module._load (internal/modules/cjs/loader.js:732:27)
at Function.f._load (electron/js2c/asar_bundle.js:5:12913)
at Module.require (internal/modules/cjs/loader.js:959:19)
at require (internal/modules/cjs/helpers.js:88:18)
at Object.<anonymous> (/opt/discord/resources/dist/patcher.js:23:50)
at Module._compile (internal/modules/cjs/loader.js:1078:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1108:10)
at Module.load (internal/modules/cjs/loader.js:935:32)
This is followed by a bunch of GTK theme parsing errors. I ran the commands in order, downloaded the Vencord installer into the Vencord folder and installed Vencord giving "dist/patcher.js" as stated in the instructions. I also tried copying the dist folder to /opt/discord/resources and using that path as someone else suggested here.
My system is Garuda Linux (Arch based) with KDE Wayland. Thanks in advance.
are you sure you ran pnpm i
Yes, I ran pnpm i then pnpm build
that sure seems like a package didn't get installed
bit strange that they were able to build it if it's missing a dep
skill issue pnpm didnt install
wipe node_modules and try again
Still the same error. This is the result of pnpm i after deleting node_modules:
Lockfile is up to date, resolution step is skipped
Packages: +119
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Packages are cloned from the content-addressable store to the virtual store.
Content-addressable store is at: /home/soumy/.local/share/pnpm/store/v3
Virtual store is at: node_modules/.pnpm
dependencies:
+ discord-types 1.3.26
+ electron-devtools-installer 3.2.0
devDependencies:
+ @types/node 18.8.2
+ @types/react 18.0.21
+ @types/yazl 2.4.2
+ electron 20.3.0
+ esbuild 0.15.10
+ yazl 2.5.1
Progress: resolved 119, reused 119, downloaded 0, added 119, done
I also did pnpm build and installed like normal
require stack:
/opt/discord/resources/dist/patcher.js
you can't move the dist folder
you also need node_modules
That was the error when I tried moving it there. Sorry I forgot to specify that. I searched this server and someone suggested doing that. I also tried the original Vencord/dist/patcher.js before and it's the same issue. I also kept node_modules when trying to install. I only deleted it as per rushii's suggestion to "regenerate" by pnpm i.
just try reinstalling
sudo rm -rf /opt/discord/resources/{dist,app}
then reinstall from vencord folder
No luck either. Still the same error sadly..
how about using npm instead of this magical pnpm package 👀
makes no difference
@uneven fractal
Sorry for the delay. I tried uninstalling discord, deleting /opt/discord/ and ~/.config/discord and reinstalling it. The error is:
A JavaScript error occurred in the main process
Uncaught Exception:
Error: Cannot find module 'dist/patcher.js'
Require stack:
- /opt/discord/resources/app/index.js
-
at Module._resolveFilename (internal/modules/cjs/loader.js:887:15)
at Function.n._resolveFilename (electron/js2c/browser_init.js:261:1128)
at Module._load (internal/modules/cjs/loader.js:732:27)
at Function.f._load (electron/js2c/asar_bundle.js:5:12913)
at Module.require (internal/modules/cjs/loader.js:959:19)
at require (internal/modules/cjs/helpers.js:88:18)
at Object.<anonymous> (/opt/discord/resources/app/index.js:1:1)
at Module._compile (internal/modules/cjs/loader.js:1078:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1108:10)
at Module.load (internal/modules/cjs/loader.js:935:32)
Is the path in index.js actually leading to patcher.js (that you built)
there's your issue
the patcher path needs to be absolute
Oh I thought it was a relative path. On the github it only said to put dist/patcher.js in the installer, but that's all done in the Vencord folder. I'll try the full path and see what happens.
Bingo that was it! Thank you all so much for your time
why do lock files get created when the app/client needs to get updated
and npm doesn't do that (replugged) nvm thanks for answering my question
@shell veldt will do this
LOVE
now good luck getting people to actually use that
people are dumb they will not use the flag even if you tell them too
yes
just make pnpm script to pull deps
oh guh
it does work
the changes to lockfile are it updating the lockfile version
trying to figure out how plugins work, how do i go about finding the function names/params i need to replace
go into sources tab in devtools and hit ctrl+shift+f
search for whatever you're looking for and it'll let you open up the source of the file
you probably want to beautify the file for readability, but bear in mind that your replacement checks will run on minified code.
if you're unsure whether there'll be a space, if you're doing regex you can always just use \s* to match any spaces
(there won't be spaces)

that's a pretty bad example to look at because it gives the impression that you patch individual methods
usually that's not the case
yeah i was looking at all the patches and noticed most arent patching methods
look at other stuff
isStaff and experiments are decent examples 
Also check out the contributing file on github
self promo
turns out im blind and missed that
basically plugins just patch the raw source
what you see in sources is what you'll be operating on
so patching isn't limited to methods, it can also operate on just one statement
delete pnpm-lock.yaml and retry
it only affects older users
I love pinning solution with 0 context
fr
sounds hot
need
do not post jon support questions here or I will burn you at the stake
who is jon support
who is jon and why is he support
use the full path instead of dist/patcher
jon support
wtf
what about it
is that a bought account
no bruh
lol what
bloody finds out people can be older than him (12)
aaaaaaaaa
wat
can i have custom plugins
if you code them
what if i leech of betterdiscord
if you edit it to use vencords api then yes
are they in js
ts but yes
Hello. I am using linux. I find that vencord installer does not work when doing sudo but does work when using su. I got it to work of course, just something to note
thats the same problem i have when i try and change my use flags in the terminal
USE="nvenc" sudo emerge ffmpeg
that doesnt install ffmpeg with nvenc support :(
okay i dont think anyone cares
also you have to use the absolute path when inputting the patcher path
what's the error
vendy can i have frog role
no.
:(
janny
can i have catgirl role
can i have coolperson role
smh
Read rule 2 btw
I am in #1026575461825921064 thread so
post 2 fortnite clips you made and you get a custom role
alright
I will
i dont use gentoo anymore
its horrible
im never using linux again
https://www.youtube.com/watch?v=NkZTfA6PjzU i made this
CLIPS (CREDIT) - MAKE SURE TO SUBSCRIBE FIRST
Link - https://social-unlock.com/Ugf4V
credit me or @ me i wanna see your edits :)
Twitter - https://twitter.com/VapurrVFX
Gira - https://twitter.com/girawtf
fortnite clips for edit free fortnite clips free fortnite clips for montage free fortnite clips for editing free clips perandor fortnite...
wtf
🤔
why people do this
to get little kids to subscribe
why are you messaging here
RandomiseFileNames seems to be broken on web
actually its supposed to not work on web
i love that plugin honestly
why
error is by trying to use what is probably an electron api
yes
why cant you just do that with a basic regex
fair
ven is cosy
const idx = file.lastIndexOf(".")
if (idx > 0) rand += file.slice(idx)
🤨
its 10 pm but fuck it i'll just pr a fix
i got this when trying to update
I'm trying to understand the "show all channels" "browse all channels" feature I have selected channels I want to see It works properly then it resets after about a half an hour or something I know it's a beta feature but I assumed that whichever plugin enabled it made it at least stable
okay
when using the installer, use the full path rather than just dist/patcher.js
alr
thanks
probably should have used my brain 😿
pls help
pins

i fixed it by just redownloading the shti
redoing the git build and git other command
the clone
the clone and the build
2nd pin!!!
^this guy doesnt know what hes talking abtou
what? the pnpm-lock.yaml ?
no everything
you can just delete the lock file
no
i just ran the git clone command and the git built and it was updated
im jus sayin waht i did
ok
how then?
the people in this discord are productivity fiends
durr you didnt have to do it this easy to understand way, you could save 0.000001 seconds by doing this much more complex fix
if you fo the git commands it will fix it
you could try to go find the pn whatever file and delete it if you want to
as a fellow nooblet i think you should follow my advice exclusively and ignore anyone that knows better.
yea but when you say that to someone that doesnt know what theyre doing, they gotta ask where is the file, then you say its in the vencord folder and then they gotta ask where that is
its easier to just have them repeat a step theyve already proven that they have the ability to do
i hope you realise this software wasn't made for noobs
you will become a noob
nonono
i hope you realize that you werent made for a significant other
bitch
okay
come here tasker ill hug you
something i did not do right 
u need friends bruh
especially w that corny ass pfp
what you crying about pussy
my extremely hot girlfriend drew this for me
yo extremely hot gf live 800 miles from you
not true kid i drive to her house in like 20 minutes flat
mfs travelin in a wheelchair
i know you are but what am i
some fatass discordian
im 5'11 150 pounds i work out 3x a week
i have a well paying job and an extremely hot girlfriend
what do you have? thats right. nothing.
i know you are but what am i.
the fuck is a chara
this is fucking hillarous to watch lmao
weird ass anime nigga
prolly gets off to the bitches whining
i bet youre still there
bro got them top tier insults
lets squash this beef bro
i think we can be friends
ill come to your middle school graduation
yo daddy aint either nigga
says you L nerd
☠️
yes!
can I simply do a rebuild if an update is available instead of doing it inside vencord?
yea
^this is important lore
thanks
hopefully I won't end up breaking discord
that did happen at some point since I had my stable client with BD and they end up conflicting each other, so then done it on canary
ever since im using vencord, i oftenly got rtc connecting when i tried voice channels
not sure which plugin, settings or does vencord affect that
yep, vencord is the culprit
i tried vanilla it just works fine
sorry it's my fault
what plugins do u have on
i tried with nitrobyp, quickcss, bettergif, experiments, iyf, silenttype, viewicon.
and then tried the vanilla vencord, like disable all the plugins
still do the same thing
and then i tried vanilla discord, it works fine
i hope my beginner trial error have some clue for you vendy
🤔
like this
and sometimes, if its succeed
it shows 0 ping
if im using the vanilla, it just works fine
is it the same branch? (stable/canary)
yes
the same stable
i just uninstall the vencord when i tried the vanilla discord
strange
i wish i could do something to help u vendy
just lmk if u need something to help with
as long as i can do and understand it
may be related to the memory leak I keep experiencing 
I mean wasn't that related to watching a stream on newer Electron
it should technically be fixed now that they're back to electron 13
Is it?
how
but only when watching a stream right
idk how stages work
it's just a vc
so ig it affects all vcs
my cat it hitting my phone with her tail
is
I don't get it
don't even modify anything about voice
you sure it doesn't happen on stock as well?
Maybe try disabling all plugins even the core required ones and see if that fixes it
slap js return { contents: "export default {}", resolveDir: "./src/plugins" }; on line 37 in build.mjs
I'm not on PC atm xd
no worries
just whenever

people
having a slight problem with nitrobypass plugin,
is it supposed to have that link always
whenever i post a emoji,that links also gets send.
can't it be not seen or something
if you send anything along with the emote, no
it's supposed to embed
i know what you mean
that's simply how it functions
ig it was a fluke or something
ik
i was saying before it was giving the and emoji simultaniously
when emoji comes,the link also comes(not happpening now)
it could be that it sent two at the same time
If you type a message it will show the link
Or that
then i have to send the emoji separately
Yes
thanks for the headsup
For some reason I can't run the patch command
Telling me that it's missing
show
and windows cmd done the same result

show me what's inside package.json
add this under the watch
"patch": "node scripts/patcher/install.js",
"unpatch": "node scripts/patcher/uninstall.js"
thanks
from the version I installed it was still using VencordInstaller.exe and didn't had that patch on it's script
that's a bad idea because now you can't update
@trim knoll please run
git reset --hard
git pull
you right
he should pull to last commit
@shell veldt seems broken
im building with my fork and it refuses to recognize that i already have checked out the head commit
perhaps thats the differences with origin/main?
it just compares current to origin/main lmao
lmao
trolle
guh
finally, that's what I been missing
thanks 
guh
Should people also hit their ENTER hard with that command
Just want to know before being absolute noob
"the patcher works" 
PS C:\Users\Kot\Vencord> pnpm patch
ERROR Cannot read properties of undefined (reading 'indexOf')
pnpm: Cannot read properties of undefined (reading 'indexOf')
at parseWantedDependency (C:\Users\Kot\.node\corepack\pnpm\7.13.0\dist\pnpm.cjs:133851:52)
at writePackage (C:\Users\Kot\.node\corepack\pnpm\7.13.0\dist\pnpm.cjs:198734:57)
at Object.handler [as patch] (C:\Users\Kot\.node\corepack\pnpm\7.13.0\dist\pnpm.cjs:198807:45)
at C:\Users\Kot\.node\corepack\pnpm\7.13.0\dist\pnpm.cjs:206424:51
at async run (C:\Users\Kot\.node\corepack\pnpm\7.13.0\dist\pnpm.cjs:206400:34)
at async runPnpm (C:\Users\Kot\.node\corepack\pnpm\7.13.0\dist\pnpm.cjs:206621:5)
at async C:\Users\Kot\.node\corepack\pnpm\7.13.0\dist\pnpm.cjs:206613:7
its not pnpm patch
it does not say pnpm patch
sob
pnpm run patch
argv moment
oh wait
and it conflicts
so as soon as i merged, people started complaining
lol
and turns out patch was added recently
pnpm ven wen
pnpm venven
pnpm venver
pnpm meow
alias ven="cd $VENCORD_HOME ; pnpm run patch"
HUSK
rename it to inject/uninject @shell veldt
pnpm run patch is horror
yes
yes
yes

you love
^ whats the output
mingw moment maybe??
possibly breaking because you're using mingw instead of just normal windows terminal tho
yeah
suckoverflow
kk
no
yes
edge case that's a pain to fix 
I will add funny line if megu doesn't
its a dependency
catnod
oh rip
hhhh
Oi, that's not mingw's fault I think
6 years sob
It's prob minTTY that ironically doesn't present itself as a TTY in some cases
lmao
There's some other stuff that always runs as if it were called over a pipe in MinTTY. Use any other terminal with the same shell and it works
guh
(unless cygpath is having a field day, then RIP you)

"fix"
brb cheating
wrong channel oop
h
Uhh they mention it elsewhere in the thread. conpty or whatever it's called now should fix issues with it needing a TTY
husking
musking
Elon musket
Wait, they were cheating?
lmao
cuh..
Found a installer on github called venboy, wanted to make you all aware. I have no idea if its malware or a legit project, might be worth looking into
@bronze stump
yeah its malware
lmao
Bruh you toying with me rn
it's made by fawn
it's safe u can use it if u want
Lol ok hah
Thanks
You know how those random exe files be
New to the project so I had No idea
I see that this is a running joke LOL
I look in other support servers and I'm like yo Instead of asking search the server
Made an ass out of myself here
you know it has a source code there

Its 5am here and the lack of sleep makes me retarded forgive me
Cheeky motherfuckers XD
Babe! It's 4 pm time for new Vencord Installer drop

Tryna get a friend set up wint Vencord. Their GIT just threw a tantrum
i want to kiss ur cheek
babe it's 4:01pm time for a new Vencord Installer drop
babe it's 4:02pm time for a new Vencord Installer drop
they used the ssh link without having ssh set up
tell them to use https link
ah
surprised noone has written rust vencord installer yet

we should port it to every lang
If I have some more free time I could do Rust. Or use the opportunity to learn a new lang
yop
honestly we should really make installers in every possible language lmfao
just to goof around
Learning opportunities
I'm almost done with the C++ one
installer in brainfuck when

THATS WHAT IM SAYIN
is it even possible
Never
they also tried to clone vencordcd instead of vencord
Tfw no liveboot ISO
is it just me or did this get updated
the profile design?
ye
they fixed the custom ones too
on dark theme they always had white text
that was never the case for me
<@&1027661955491700786>
skill issue
I had the custom ones rolled out but they were borked
indeed
Explo(u)d?
@everyone im home
i will explod
guh you will give me kotlin role
I want java role

mad?
xd
So I had a (slightly edited) style I grabbed back for Powercord (and later Replugged).
Is anything special required to get that to play nice with Vencord?
themes/styles are just css, they should work with any client mod just the same - you should even be able to use them in the browser with no issues
Good to know. CSS is a nemesis of mine, so I'd rather ask than fuck up and not know if it's my fault
is there any way to access UserStore within a webpack module
uhh is the vencord updater supposed to look like this?
better yet I dont even have that option
You need to update it manually to fix that
oof
Simply run this
git reset --hard
git pull```
Oops my bad
ok i did that but i still see no update option in settings. It no longer says i need to update tho so i guess i got what i wanted
Restart discord and check on settings
yeah no luck
when i updated i also made sure discord was closed
does vencordinstaller have any command line arguments?
oop
Looked at the Git have been. Apparently they changed instructions the last time I looked at it
Yeah that happen without a notice
ok i reinstalled it with the new instructions and everything is fixed ty for the help
Does it matter where I open a terminal to clone Vencord?
On Linux, does it matter where?
oh i'm not a linux user
Or should I git clone it in a specific folder
Even on Windows, if you just open a terminal it will install in the home directory
no no
just clone it on a folder
it's okay
It doesn't matter, but you might have to allow r/w permissions for everyone on the folder where Discord stuff is stored
Right
cd vencord
git reset --hard origin/main

real
(There's injection stuff happening on the Discord end of things after all, it needs to write for that)
Noted
Oh, almost forgot to ask, what's supported? Can I safely pull in scss, or am I gonna have a bad time then?
does vencord work with kernel?
Question is, does Kernel work lol
Aren't all Discord related packages non functional right now
i think so yeah, this was more of a "did it work before update" because if it did im hopefully it will work when kernel is updated (if thats needed at all)
if you mean theme, then you can
Good to know. Oddly enough, it didn't work for some stuff
mine uses clearvision css
no
yikes f
Vencord.Webpack.Common.UserStore
hop off flask
what browser r u using
opera gx
HOP OFF
rule 7 of the internet: never show what browser you use
opera gx literally chinese spyware
You'll never find anything like it in utility
@muted marsh you love
NOP
why???????
because 😎
Saves you space from having to download music apps
^ also that
and whatsapp
you can reach them easily
If only opera gx wasn't connected to the Chinese
Disconnect it from China
I myself am torn between Vivaldi and Firefox
firefox if you want privacy, vivaldi if you want a better opera like experience
how my dum dum brain uses custom css in browser vencord?
i assume you're just gonna pop up a monaco modal or something
well assuming you ever write the modal api anyways

if you want privacy use librewolf
if you want speed use ungoogled chromium
nah, its better to just use normal firefox. all those privacy forks end up doing is breaking sites and features
ive been using librewolf for ages and i havent seen any sites break
its usually the sites that just dont support firefox
everything librewolf does can be toggled through the firefox config anyway
privacy nerds inside the 83rd layer of firefox privacy browser forks
using a privacy oriented browser can also further single you out to trackers because it's a less common browser environment than one of the more common ones
big brain anti tracking backfires
nah surely they cant get through my my vpn and 83 tracker blocking lists and pihole
i deliberately use a non privacy focused browser because i only half care
I use firefox and some sane changes in about:config precisely because of privacy backfiring
I use librewolf
put general above support lmao
firefox good
you explode
I prefer Firefox because syncing all the things between phone - pc
I am a sucker for syncing between devices :')
i love lenny 
I can't inject wtf
i run install.sh, a console opens up for a split second before closing
and that's it, nothing.
I also tried running it as adminstrator, still no change.
what???
typo my bad
Did you read what you have to do?
Where the fuck did you get install.sh
the github wiki told me?
Read this over again
bru idk what to tell you
i know i know
because just yesterday i followed what it said in the repo's home page README, do all the cmd commands and stuffs, got to this point, and the wiki literally tells me to run either install.sh or install.ps1 based on what i like
following these docs worked for me on arch
im on windows L
liar status
.-.
i said im on windows right now, i use xero btw
I genuinely dont know where you got those files
dual boot 
windows removing partitions 
i did the npm things that the repo told me. things are probably updated after the recent discord update incident. the npm gave me those files.
wait what
win11 or 10?
ok nvm i think it still works, havent touched grub in months bc havent shut down my windows in months
idk but people says windows remove any unknown partition after updates or sth they been complaining since win 10 but it seems to be a bigger problem in 11
yeah heard that too
win11 made it like impossible to dual boot
i mean not impossible to unix users
but yeah pretty hard for an average user
they banned like ubuntu's efi or smth? i dont know i hate these OS terms. i've read them in an article.
dualbooting is just dogshitter
also i just noticed, the fuck is page file? that thing is fucking 30gb taking over my disk
true but
i stick with linux as it is most familiar tho
school apps.
I havent heard of a school app that doesnt run under wine
funny to see that linux users know more about windows than windows users
wine sucks my ass
i just install windows on a portable HDD (windows to go) 
i mean it seems pretty cool but i just dont know how to use it
no? it runs just about anything that doesnt try tapping into the matrix
In short:
wine pornhub.exe
i actually have that too but for some reason, laptops' motherboards like to install the windows instead of booting into it
I mean, this is the very basics of it
There is obviously a lot more
But that should work pretty well for shit that isnt requiring outdated fossilized dlls
explode
why tf in system32 
wait
wait wait
FUCK
you told me to run it in adminstrator
i mean you didnt but
the wiki did
wahh
im dumb fuck
i know
xd
i just havent touched these stuffs in months
high school is shit
i swear to fucking god
'epic' is not recognized as an internal or external command, operable program or batch file.
lol
nop
yop
i think i'll need to merge to pull






