Dual Boot
caution
This feature requires some basic computer literacy.
BetterDiscord allows you to return to vanilla Discord functionality without having to remove BetterDiscord. This is useful for those that like to switch back and forth. This is done using the --vanilla
command line flag. There are two ways this can be used. You can either do this as a one-off or setup a shortcut for yourself to easily boot between normal Discord and BetterDiscord.
One-off
Running vanilla Discord as a one-off means next time you launch Discord, BetterDiscord will be enabled.
- windows
- mac
- linux
- Ensure Discord is fully closed
- Right-click your existing Discord shortcut and select
Properties
- Copy the
Target
field - Open command prompt by pressing
⊞ win
+r
- Paste the value of the
Target
field and add a space and--vanilla
at the end - Click
OK
or pressEnter
- Ensure Discord is fully closed
- Open iTerm app (
⌘ Command
+Spacebar
) - Paste and run
open /Applications/Discord.app --args --vanilla
- Ensure Discord is fully closed
- Open preferred terminal
- Run
discord --vanilla
Shortcut
Creating a separate shortcut makes it easy to launch with either vanilla Discord or with BetterDiscord.
- windows
- mac
- linux
- Ensure Discord is fully closed
- Right-click your existing Discord shortcut and select
Create Shortcut
- Right-click the new shortcut
Discord (2)
and selectProperties
- In the target field add a space followed by
--vanilla
at the end of the field - Click
OK
- Rename your new shortcut to something like
Discord Vanilla
- Ensure Discord is fully closed
- Open the Automator app (
⌘ Command
+Spacebar
) - Select
New Document
thenApplication
- From the menu on the left drag
Run Shell Script
to the right-hand side. - On the right, in the textbox that appears, paste in
open -a '/Applications/Discord.app' --args --vanilla
- At the top, name your application something like
Discord Vanilla
and setWhere
to be theApplications
folder - Go to
File > Save
to finalize
- Ensure Discord is fully closed
- Create a new bash script (
vanilla.sh
) using a terminal editor such asnano
- The first line of the script should be the bash shebang such as
#!/bin/bash
- On the next line put
discord --vanilla
- Save the script and run
chmod +x vanilla.sh
- Put the file on your distro's desktop for easy use