Skip to content

Instantly share code, notes, and snippets.

@mkuchak
Last active May 10, 2023 14:59
Show Gist options
  • Save mkuchak/957670f1883e2e8146486da0ac957668 to your computer and use it in GitHub Desktop.
Save mkuchak/957670f1883e2e8146486da0ac957668 to your computer and use it in GitHub Desktop.
Unlock Discord resize window limit

1. Find settings

Windows: C:\Users\<your_user>\AppData\Roaming\discord\settings.json

Linux: /home/<your_user>/snap/discord/121/.config/discord/settings.json

If not was installed with snap use sudo find / -name settings.json to locate the file

2. Update settings.json

3. Save and reboot Discord

{
"IS_MAXIMIZED": false,
"IS_MINIMIZED": false,
"MIN_WIDTH": 0,
"MIN_HEIGHT": 0,
"WINDOW_BOUNDS": {
"x": 0,
"y": 0,
"width": 800,
"height": 600
},
"BACKGROUND_COLOR": "#202225"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment