ryleu / collapse-sidebar

collapse the left sidebar in discord

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

collapse-sidebar

collapse the left sidebar in discord

screenshots

collapsed

Screenshot from 2022-05-03 21-08-42

expanded

Screenshot from 2022-05-03 21-10-02

that's pretty much it.

super small mode

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
}

About

collapse the left sidebar in discord

License:GNU General Public License v3.0


Languages

Language:CSS 100.0%