hanki.dev

Remove Discord window minimum size

By default there's a limit how small you can make Discord window. You can remove this limit by adding MIN_WIDTH and MIN_HEIGHT to Discord's settings.json

Mac location: ~/Library/Application\ Support/discord/settings.json

Windows location: %appdata%/discord/settings.json

Linux location: ~/.config/discord/settings.json

After editing the file should look something like this:

{
  "BACKGROUND_COLOR": "#202225",
  "IS_MAXIMIZED": false,
  "IS_MINIMIZED": false,
  "MIN_WIDTH": 0,
  "MIN_HEIGHT": 0,
  "WINDOW_BOUNDS": {
    "x": 2207,
    "y": 258,
    "width": 940,
    "height": 707
  }
}

#windows