Skip to content

Instantly share code, notes, and snippets.

@ltrademark
Last active January 13, 2021 18:59
Show Gist options
  • Save ltrademark/2f0ccb3754182f7beb5f7ededfb058c7 to your computer and use it in GitHub Desktop.
Save ltrademark/2f0ccb3754182f7beb5f7ededfb058c7 to your computer and use it in GitHub Desktop.
quick set-up how-to and settings dump for fixing the abysmal experience for discord on windows 10.

Intro

This is to serve as a quick set-up how-to and settings dump for fixing the abysmal experience for discord on windows 10.

Step 1 : Modify Your Application settings

Doing this will allow you to Resize the window to any size.

(You can google how. Start Here: https://www.reddit.com/r/discordapp/comments/acog0e/remove_minimum_size_of_discord_window_windowsmac/)

Navigate to C:\Users\%username%\AppData\Roaming\Discord\settings.json

Paste this

{
  "IS_MAXIMIZED": false,
  "IS_MINIMIZED": false,
  "MIN_WIDTH": 0,
  "MIN_HEIGHT": 0,
  "WINDOW_BOUNDS": {
    "x": 10,
    "y": 40,
    "width": 462,
    "height": 759
  },
  "BACKGROUND_COLOR": "#202225"
}

Restart Discord.

Step 2

Download and install BandagedBD which is just an upkept fork of BetterDiscord

https://github.com/rauenzi/BetterDiscordApp Executable


BandagedBD

Here is a settings dump from the app in my current configuration:

Settings

MODULES

  • Public Servers
  • Minimal Mode
  • Voice Mode
  • Hide Channels
  • Dark Mode
  • Voice Disconnect
  • 24 hour timestamps
  • Colored Text
  • Normalize Classes

CONTENT MANAGER

  • Content Error Modal
  • Show Toasts
  • Scroll to settings
  • Automatic Loading

DEVELOPER SETTINGS

  • Developer Mode
  • Copy Selector

WINDOWS PREFs

  • Enable Transparency

EMOTES

skip or leave default

PLUGINS

None that I have now

THEMES

CUSTOM CSS

.sidebar-2K8pFh {
    position: absolute;
    top: 50px;
    left: 0;
    bottom: 0;
    width: 60px;
    transition: 550ms ease-in-out all;
    z-index: 5;
}
.sidebar-2K8pFh:hover {
    width: 250px;
    transition: 225ms ease-in-out all;
}
.content-98HsJk,
.contents-2mQqc9 {
    position: relative;
}
.content-yTz4x3 {
    padding-left: 60px;
    margin: 0;
}
.peopleListItem-2nzedh,
.title-30qZAO {
    margin-left: 60px;
    padding: 15px;
    margin-right: 0;
}
.peopleListItem-2nzedh:hover {
    margin-left: 60px;
    padding: 15px;
    margin-right: 0;
}
.timestamp-3ZCmNB {
    display: block;
    margin: 0 !important;
    text-align: left;
    background: #eee;
    padding: 3px 5px;
    line-height: 1 !important;
    height: auto;
    border-radius: 100px;
}
.compact-T3H92H.wrapper-2a6GCs {
        padding: 0 20px;
}
.compact-T3H92H .contents-2mQqc9 {
    margin-left: 0;
    padding-left: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment