collapse the left sidebar in discord
that's pretty much it.
if you want to go super small, you can edit ~/.config/discord/settings.json
(~/.config/discordcanary/settings.json
for powercord / other canary users)
add this to it:
"MIN_WIDTH": 0,
"MIN_HEIGHT": 0,
mine looked like this before:
{
"BACKGROUND_COLOR": "#202225",
"IS_MAXIMIZED": false,
"IS_MINIMIZED": false,
"WINDOW_BOUNDS": {
"x": 4,
"y": 48,
"width": 1178,
"height": 1028
},
"MINIMIZE_TO_TRAY": false
}
now it looks like this:
{
"BACKGROUND_COLOR": "#202225",
"IS_MAXIMIZED": false,
"IS_MINIMIZED": false,
"MIN_WIDTH": 0,
"MIN_HEIGHT": 0,
"WINDOW_BOUNDS": {
"x": 4,
"y": 48,
"width": 1178,
"height": 1028
},
"MINIMIZE_TO_TRAY": false
}