Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion src/components/pages/download/MacTab.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---
import Card, { CardKind } from "@components/Card.svelte";
import CodeBlock from "@components/CodeBlock.svelte";
import Code from "@components/Code.astro";
import Tab from "./Tab.astro";
---

<Tab fileNames={["VencordInstaller.MacOs.zip"]}>
<Tab fileNames={["VencordInstaller.MacOS.zip"]}>
<p slot="header">
Download the zip, unzip it and run <Code>VencordInstaller.app</Code>! It
should list all Discord installs on your System. Pick the one you would
Expand Down Expand Up @@ -44,6 +45,32 @@ import Tab from "./Tab.astro";
>.
</p>
</Card>
<Card slot="footer" kind={CardKind.Warning}>
<h3>Doesn't work?</h3>

<p>
If Nothing happens when you click <Code>Open Anyway</Code> you are probably
not using an Admin Account. Open the Terminal by pressing <Code
>⌘</Code
> + <Code>Space</Code> and search for
<Code>Terminal</Code> in ur Language and open it. We are assuming you
saved and
<Code>unzipped</Code> the <Code>VencordInstaller.MacOS.zip</Code>
in your <Code>Downloads</Code> folder. If you saved it somewhere else,
change the following path accordingly. Type <Code>cd Downloads</Code
>
into your terminal and press Enter that should change the directory to
the Folder where you unzipped the <Code
>VencordInstaller.MacOS.zip</Code
>. After that type
</p>
<CodeBlock
code={`xattr -dr com.apple.quarantine VencordInstaller.app`}
client:load
/>
<p>into your terminal and press Enter. After that type</p>
<CodeBlock code={`open VencordInstaller.app`} client:load />
</Card>
</Tab>

<style>
Expand Down